From dc376960800ff5c86f5eaca9bd3303013a40c1ce Mon Sep 17 00:00:00 2001 From: Linwei Shang Date: Thu, 18 Jan 2024 11:04:03 -0500 Subject: [PATCH] chore: release v0.32.0 (#505) --- CHANGELOG.md | 3 +++ Cargo.lock | 12 ++++++------ Cargo.toml | 8 ++++---- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a50e937d..8df17bfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.32.0] - 2024-01-18 + * Added the chunked wasm API to ic-utils. Existing code that uses `install_code` should probably update to `install`, which works the same but silently handles large wasm modules. * Added query stats to `StatusCallResult`. +* Upgraded `ic-certification` to v2.2. ## [0.31.0] - 2023-11-27 diff --git a/Cargo.lock b/Cargo.lock index 6ceeba6c..f30c3b08 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1051,7 +1051,7 @@ dependencies = [ [[package]] name = "ic-agent" -version = "0.31.0" +version = "0.32.0" dependencies = [ "backoff", "cached", @@ -1110,7 +1110,7 @@ dependencies = [ [[package]] name = "ic-identity-hsm" -version = "0.31.0" +version = "0.32.0" dependencies = [ "hex", "ic-agent", @@ -1122,7 +1122,7 @@ dependencies = [ [[package]] name = "ic-transport-types" -version = "0.31.0" +version = "0.32.0" dependencies = [ "candid", "hex", @@ -1138,7 +1138,7 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.31.0" +version = "0.32.0" dependencies = [ "async-trait", "candid", @@ -1187,7 +1187,7 @@ dependencies = [ [[package]] name = "icx" -version = "0.31.0" +version = "0.32.0" dependencies = [ "anyhow", "candid", @@ -1205,7 +1205,7 @@ dependencies = [ [[package]] name = "icx-cert" -version = "0.31.0" +version = "0.32.0" dependencies = [ "anyhow", "base64 0.13.1", diff --git a/Cargo.toml b/Cargo.toml index 8ab15c43..1ca30f1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ ] [workspace.package] -version = "0.31.0" +version = "0.32.0" authors = ["DFINITY Stiftung "] edition = "2021" repository = "https://github.com/dfinity/agent-rs" @@ -21,9 +21,9 @@ rust-version = "1.70.0" license = "Apache-2.0" [workspace.dependencies] -ic-agent = { path = "ic-agent", version = "0.31.0", default-features = false } -ic-utils = { path = "ic-utils", version = "0.31.0" } -ic-transport-types = { path = "ic-transport-types", version = "0.31.0" } +ic-agent = { path = "ic-agent", version = "0.32.0", default-features = false } +ic-utils = { path = "ic-utils", version = "0.32.0" } +ic-transport-types = { path = "ic-transport-types", version = "0.32.0" } ic-certification = "2.2" candid = "0.10.1"