From 9eeee27a40d52c319bb77843df187fceb7f2287b Mon Sep 17 00:00:00 2001 From: Adam Spofford <93943719+adamspofford-dfinity@users.noreply.github.com> Date: Tue, 22 Oct 2024 08:38:53 -0700 Subject: [PATCH] chore: release 0.39.0 (#610) --- CHANGELOG.md | 2 ++ Cargo.lock | 12 ++++++------ Cargo.toml | 8 ++++---- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 941d72d2..e6e00f96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.39.0] + * The lower-level update call functions now return the certificate in addition to the parsed response data. * Make ingress_expiry required and set the default value to 3 min. * Changed `BasicIdentity`'s implementation from `ring` to `ed25519-consensus`. diff --git a/Cargo.lock b/Cargo.lock index ef4a2b5e..b89447c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1044,7 +1044,7 @@ dependencies = [ [[package]] name = "ic-agent" -version = "0.38.2" +version = "0.39.0" dependencies = [ "arc-swap", "async-channel", @@ -1113,7 +1113,7 @@ dependencies = [ [[package]] name = "ic-identity-hsm" -version = "0.38.2" +version = "0.39.0" dependencies = [ "hex", "ic-agent", @@ -1125,7 +1125,7 @@ dependencies = [ [[package]] name = "ic-transport-types" -version = "0.38.2" +version = "0.39.0" dependencies = [ "candid", "hex", @@ -1142,7 +1142,7 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.38.2" +version = "0.39.0" dependencies = [ "async-trait", "candid", @@ -1206,7 +1206,7 @@ dependencies = [ [[package]] name = "icx" -version = "0.38.2" +version = "0.39.0" dependencies = [ "anyhow", "candid", @@ -1225,7 +1225,7 @@ dependencies = [ [[package]] name = "icx-cert" -version = "0.38.2" +version = "0.39.0" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index effbf262..72243e21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ ] [workspace.package] -version = "0.38.2" +version = "0.39.0" authors = ["DFINITY Stiftung "] edition = "2021" repository = "https://github.com/dfinity/agent-rs" @@ -22,9 +22,9 @@ rust-version = "1.75.0" license = "Apache-2.0" [workspace.dependencies] -ic-agent = { path = "ic-agent", version = "0.38.2", default-features = false } -ic-utils = { path = "ic-utils", version = "0.38.2" } -ic-transport-types = { path = "ic-transport-types", version = "0.38.2" } +ic-agent = { path = "ic-agent", version = "0.39.0", default-features = false } +ic-utils = { path = "ic-utils", version = "0.39.0" } +ic-transport-types = { path = "ic-transport-types", version = "0.39.0" } ic-certification = "2.2" candid = "0.10.1"