From 729398880545a1f49a4c6286d0dd0c94254b236f Mon Sep 17 00:00:00 2001 From: Linwei Shang Date: Fri, 20 Sep 2024 12:38:06 -0700 Subject: [PATCH] chore: release v0.38.0 (#596) --- 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 469a40b2..7bdb1694 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.38.0] - 2024-09-20 + * Breaking: Removed `Transport` and the `hyper` and `reqwest` features. `ReqwestTransport` is now the default and `HyperTransport` has been removed. Existing `ReqwestTransport` functions have been moved to `AgentBuilder`. * `Url` now implements `RouteProvider`. * Add canister snapshot methods to `ManagementCanister`. diff --git a/Cargo.lock b/Cargo.lock index 506c0d1e..2ecf33d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "ic-agent" -version = "0.37.1" +version = "0.38.0" dependencies = [ "async-lock", "backoff", @@ -1105,7 +1105,7 @@ dependencies = [ [[package]] name = "ic-identity-hsm" -version = "0.37.1" +version = "0.38.0" dependencies = [ "hex", "ic-agent", @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "ic-transport-types" -version = "0.37.1" +version = "0.38.0" dependencies = [ "candid", "hex", @@ -1133,7 +1133,7 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.37.1" +version = "0.38.0" dependencies = [ "async-trait", "candid", @@ -1196,7 +1196,7 @@ dependencies = [ [[package]] name = "icx" -version = "0.37.1" +version = "0.38.0" dependencies = [ "anyhow", "candid", @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "icx-cert" -version = "0.37.1" +version = "0.38.0" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index 535c20fa..85e0ab4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ ] [workspace.package] -version = "0.37.1" +version = "0.38.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.37.1", default-features = false } -ic-utils = { path = "ic-utils", version = "0.37.1" } -ic-transport-types = { path = "ic-transport-types", version = "0.37.1" } +ic-agent = { path = "ic-agent", version = "0.38.0", default-features = false } +ic-utils = { path = "ic-utils", version = "0.38.0" } +ic-transport-types = { path = "ic-transport-types", version = "0.38.0" } ic-certification = "2.2" candid = "0.10.1"