From 82a481de9bd235c23bdc646ba038e60a63095e88 Mon Sep 17 00:00:00 2001 From: George Mulhearn <57472912+gmulhearn@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:43:27 +1000 Subject: [PATCH] bump version 0.67 (#1315) Signed-off-by: George Mulhearn Co-authored-by: George Mulhearn --- Cargo.lock | 20 +++++++++---------- Cargo.toml | 2 +- .../src/controllers/general.rs | 2 +- aries/aries_vcx/README.md | 2 +- did_core/did_methods/did_peer/README.md | 2 +- did_core/did_parser_nom/README.md | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ed0a9ef616..789b5ffa8b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -487,7 +487,7 @@ dependencies = [ [[package]] name = "aries-vcx-agent" -version = "0.66.0" +version = "0.67.0" dependencies = [ "anoncreds_types", "aries_vcx", @@ -532,7 +532,7 @@ dependencies = [ [[package]] name = "aries_vcx" -version = "0.66.0" +version = "0.67.0" dependencies = [ "anoncreds_types", "aries_vcx_anoncreds", @@ -580,7 +580,7 @@ dependencies = [ [[package]] name = "aries_vcx_anoncreds" -version = "0.66.0" +version = "0.67.0" dependencies = [ "anoncreds", "anoncreds_types", @@ -598,7 +598,7 @@ dependencies = [ [[package]] name = "aries_vcx_ledger" -version = "0.66.0" +version = "0.67.0" dependencies = [ "anoncreds_types", "aries_vcx_wallet", @@ -626,7 +626,7 @@ dependencies = [ [[package]] name = "aries_vcx_wallet" -version = "0.66.0" +version = "0.67.0" dependencies = [ "anyhow", "aries-askar", @@ -1904,7 +1904,7 @@ dependencies = [ [[package]] name = "diddoc_legacy" -version = "0.66.0" +version = "0.67.0" dependencies = [ "display_as_json", "serde", @@ -3260,7 +3260,7 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "messages" -version = "0.66.0" +version = "0.67.0" dependencies = [ "chrono", "derive_more", @@ -4599,7 +4599,7 @@ dependencies = [ [[package]] name = "shared" -version = "0.66.0" +version = "0.67.0" dependencies = [ "bs58", "lazy_static", @@ -5126,7 +5126,7 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test_utils" -version = "0.66.0" +version = "0.67.0" dependencies = [ "anoncreds_types", "aries_vcx_anoncreds", @@ -5571,7 +5571,7 @@ dependencies = [ [[package]] name = "uniffi_aries_vcx" -version = "0.66.0" +version = "0.67.0" dependencies = [ "android_logger", "aries_vcx", diff --git a/Cargo.toml b/Cargo.toml index 42b60279c3..58fa41fa61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ members = [ ] [workspace.package] -version = "0.66.0" +version = "0.67.0" authors = [ "Absa Group Limited", "Hyperledger Indy Contributors ", diff --git a/aries/agents/aath-backchannel/src/controllers/general.rs b/aries/agents/aath-backchannel/src/controllers/general.rs index d58d6fc740..0007af8a6c 100644 --- a/aries/agents/aath-backchannel/src/controllers/general.rs +++ b/aries/agents/aath-backchannel/src/controllers/general.rs @@ -28,7 +28,7 @@ pub async fn get_status(agent: web::Data>) -> impl Responde #[get("/version")] pub async fn get_version() -> impl Responder { // Update this with aries-vcx - HttpResponse::Ok().body("0.66.0") + HttpResponse::Ok().body("0.67.0") } #[get("/did")] diff --git a/aries/aries_vcx/README.md b/aries/aries_vcx/README.md index 4cfeeb6291..05124d256a 100644 --- a/aries/aries_vcx/README.md +++ b/aries/aries_vcx/README.md @@ -23,7 +23,7 @@ To use `aries_vcx` in your project, you need to add GitHub dependency to your `C define a version through a `tag`: ```toml -aries-vcx = { tag = "0.66.0", git = "https://github.com/hyperledger/aries-vcx" } +aries-vcx = { tag = "0.67.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 3ad1efa587..aed9740a76 100644 --- a/did_core/did_methods/did_peer/README.md +++ b/did_core/did_methods/did_peer/README.md @@ -23,7 +23,7 @@ Add the Peer DID library as a dependency in your `Cargo.toml` file: ```toml [dependencies] -peer_did = { tag = "0.66.0", git = "https://github.com/hyperledger/aries-vcx" } +peer_did = { tag = "0.67.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 ad2bd20e38..f3b0a361d9 100644 --- a/did_core/did_parser_nom/README.md +++ b/did_core/did_parser_nom/README.md @@ -17,5 +17,5 @@ Add the did_parser library as a dependency in your `Cargo.toml` file: ```toml [dependencies] -did_parser_nom = { tag = "0.66.0", git = "https://github.com/hyperledger/aries-vcx" } +did_parser_nom = { tag = "0.67.0", git = "https://github.com/hyperledger/aries-vcx" } ```