diff --git a/Cargo.lock b/Cargo.lock index e56bc1bd66..aa2194841d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "aries-vcx-agent" -version = "0.62.0" +version = "0.63.0" dependencies = [ "anoncreds_types", "aries_vcx", @@ -479,7 +479,7 @@ dependencies = [ [[package]] name = "aries_vcx" -version = "0.62.0" +version = "0.63.0" dependencies = [ "anoncreds_types", "aries_vcx_core", @@ -1912,7 +1912,7 @@ dependencies = [ [[package]] name = "diddoc_legacy" -version = "0.62.0" +version = "0.63.0" dependencies = [ "display_as_json", "serde", @@ -3407,7 +3407,7 @@ checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "messages" -version = "0.62.0" +version = "0.63.0" dependencies = [ "chrono", "derive_more", @@ -4684,7 +4684,7 @@ dependencies = [ [[package]] name = "shared" -version = "0.62.0" +version = "0.63.0" dependencies = [ "bs58 0.4.0", "lazy_static", @@ -5242,7 +5242,7 @@ dependencies = [ [[package]] name = "test_utils" -version = "0.62.0" +version = "0.63.0" dependencies = [ "anoncreds_types", "aries_vcx_core", @@ -5647,7 +5647,7 @@ dependencies = [ [[package]] name = "uniffi_aries_vcx" -version = "0.62.0" +version = "0.63.0" dependencies = [ "android_logger", "aries_vcx", diff --git a/Cargo.toml b/Cargo.toml index 3fb5c94cb1..ddc160f0d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ members = [ ] [workspace.package] -version = "0.62.0" +version = "0.63.0" authors = [ "Absa Group Limited", "Hyperledger Indy Contributors ", diff --git a/aries/aries_vcx/README.md b/aries/aries_vcx/README.md index cd0b315dfb..19b328698d 100644 --- a/aries/aries_vcx/README.md +++ b/aries/aries_vcx/README.md @@ -18,7 +18,7 @@ webservers for VC issuance/verification, didcomm mediator service etc. To use `aries_vcx` in your project, you need to add GitHub dependency to your `Cargo.toml`, and best define a version through a `tag`: ```toml -aries-vcx = { tag = "0.62.0", git = "https://github.com/hyperledger/aries-vcx" } +aries-vcx = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" } ``` It's also advisable to follow these [instructions](TUTORIAL.md) to check your environment is properly configured. diff --git a/did_core/did_methods/did_peer/README.md b/did_core/did_methods/did_peer/README.md index 97abd1b534..dda1b971f9 100644 --- a/did_core/did_methods/did_peer/README.md +++ b/did_core/did_methods/did_peer/README.md @@ -18,7 +18,7 @@ need for a blockchain or other centralized registry. Add the Peer DID library as a dependency in your `Cargo.toml` file: ```toml [dependencies] -peer_did = { tag = "0.62.0", git = "https://github.com/hyperledger/aries-vcx" } +peer_did = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" } ``` ## Demo diff --git a/did_core/did_parser_nom/README.md b/did_core/did_parser_nom/README.md index 9cff9a678c..59f6619132 100644 --- a/did_core/did_parser_nom/README.md +++ b/did_core/did_parser_nom/README.md @@ -12,5 +12,5 @@ Rust crate for parsing [DIDs](https://www.w3.org/TR/did-core/#did-syntax) and [D Add the did_parser library as a dependency in your `Cargo.toml` file: ```toml [dependencies] -did_parser_nom = { tag = "0.62.0", git = "https://github.com/hyperledger/aries-vcx" } +did_parser_nom = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" } ```