diff --git a/Cargo.lock b/Cargo.lock index a6bf01c2f0..715879918d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -233,7 +233,7 @@ dependencies = [ [[package]] name = "agency_client" -version = "0.61.0" +version = "0.62.0" dependencies = [ "async-trait", "env_logger 0.9.3", @@ -453,7 +453,7 @@ dependencies = [ [[package]] name = "aries-vcx-agent" -version = "0.61.0" +version = "0.62.0" dependencies = [ "anoncreds_types", "aries_vcx", @@ -477,7 +477,7 @@ dependencies = [ [[package]] name = "aries_vcx" -version = "0.61.0" +version = "0.62.0" dependencies = [ "agency_client", "anoncreds_types", @@ -1943,7 +1943,7 @@ dependencies = [ [[package]] name = "diddoc_legacy" -version = "0.61.0" +version = "0.62.0" dependencies = [ "display_as_json", "serde", @@ -3269,7 +3269,7 @@ dependencies = [ [[package]] name = "libvcx_core" -version = "0.61.0" +version = "0.62.0" dependencies = [ "agency_client", "anoncreds_types", @@ -3304,7 +3304,7 @@ dependencies = [ [[package]] name = "libvcx_logger" -version = "0.61.0" +version = "0.62.0" dependencies = [ "android_logger", "aries_vcx_core", @@ -3469,7 +3469,7 @@ checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "messages" -version = "0.61.0" +version = "0.62.0" dependencies = [ "chrono", "derive_more", @@ -4794,7 +4794,7 @@ dependencies = [ [[package]] name = "shared" -version = "0.61.0" +version = "0.62.0" dependencies = [ "bs58 0.4.0", "lazy_static", @@ -5331,7 +5331,7 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test_utils" -version = "0.61.0" +version = "0.62.0" dependencies = [ "agency_client", "anoncreds_types", @@ -5737,7 +5737,7 @@ dependencies = [ [[package]] name = "uniffi_aries_vcx" -version = "0.61.0" +version = "0.62.0" dependencies = [ "android_logger", "aries_vcx", @@ -5967,7 +5967,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "vcx-napi-rs" -version = "0.61.0" +version = "0.62.0" dependencies = [ "chrono", "libvcx_core", diff --git a/Cargo.toml b/Cargo.toml index 5101980f3b..21cdd840b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ members = [ ] [workspace.package] -version = "0.61.0" +version = "0.62.0" authors = [ "Absa Group Limited", "Hyperledger Indy Contributors ", diff --git a/aries/aries_vcx/README.md b/aries/aries_vcx/README.md index afee2fbfb5..cd0b315dfb 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.61.0", git = "https://github.com/hyperledger/aries-vcx" } +aries-vcx = { tag = "0.62.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/aries/wrappers/node/package-lock.json b/aries/wrappers/node/package-lock.json index fe042f0d94..73fa826382 100644 --- a/aries/wrappers/node/package-lock.json +++ b/aries/wrappers/node/package-lock.json @@ -1,12 +1,12 @@ { "name": "@hyperledger/node-vcx-wrapper", - "version": "0.61.0", + "version": "0.62.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@hyperledger/node-vcx-wrapper", - "version": "0.61.0", + "version": "0.62.0", "license": "Apache-2.0", "dependencies": { "@hyperledger/vcx-napi-rs": "file:../vcx-napi-rs", diff --git a/aries/wrappers/node/package.json b/aries/wrappers/node/package.json index dd38f802cc..a19ecaf9aa 100644 --- a/aries/wrappers/node/package.json +++ b/aries/wrappers/node/package.json @@ -3,7 +3,7 @@ "name": "@hyperledger/node-vcx-wrapper", "description": "NodeJS wrapper Aries Framework", "license": "Apache-2.0", - "version": "0.61.0", + "version": "0.62.0", "directories": { "test": "test", "build": "dist", diff --git a/did_core/did_methods/did_peer/README.md b/did_core/did_methods/did_peer/README.md index 3821ad47c7..97abd1b534 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.61.0", git = "https://github.com/hyperledger/aries-vcx" } +peer_did = { tag = "0.62.0", git = "https://github.com/hyperledger/aries-vcx" } ``` ## Demo diff --git a/did_core/did_parser/README.md b/did_core/did_parser/README.md index d8f880d8dd..92642dc970 100644 --- a/did_core/did_parser/README.md +++ b/did_core/did_parser/README.md @@ -12,7 +12,7 @@ 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 = { tag = "0.61.0", git = "https://github.com/hyperledger/aries-vcx" } +did_parser = { tag = "0.62.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 2b793b6e28..9cff9a678c 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.61.0", git = "https://github.com/hyperledger/aries-vcx" } +did_parser_nom = { tag = "0.62.0", git = "https://github.com/hyperledger/aries-vcx" } ```