From b480722e8f61191fea4fb16ea55c1def2600aaa3 Mon Sep 17 00:00:00 2001 From: Linwei Shang Date: Fri, 10 May 2024 11:46:59 -0400 Subject: [PATCH] chore: release v0.35.0 --- 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 8959959f..e0cbcfc2 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.35.0] - 2024-05-10 + * Added a limit to the concurrent requests an agent will make at once. This should make server-side ratelimiting much rarer to encounter, even when sending a high volume of requests (for example, a large `ic_utils::ManagementCanister::install` call). * The agent will now automatically retry 429 Too Many Requests responses after a short delay. * BREAKING: Changed Chunk Store API to conform to the interface specification: diff --git a/Cargo.lock b/Cargo.lock index 070281a4..bc449421 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1225,7 +1225,7 @@ dependencies = [ [[package]] name = "ic-agent" -version = "0.34.0" +version = "0.35.0" dependencies = [ "async-lock", "backoff", @@ -1290,7 +1290,7 @@ dependencies = [ [[package]] name = "ic-identity-hsm" -version = "0.34.0" +version = "0.35.0" dependencies = [ "hex", "ic-agent", @@ -1302,7 +1302,7 @@ dependencies = [ [[package]] name = "ic-transport-types" -version = "0.34.0" +version = "0.35.0" dependencies = [ "candid", "hex", @@ -1318,7 +1318,7 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.34.0" +version = "0.35.0" dependencies = [ "async-trait", "candid", @@ -1367,7 +1367,7 @@ dependencies = [ [[package]] name = "icx" -version = "0.34.0" +version = "0.35.0" dependencies = [ "anyhow", "candid", @@ -1385,7 +1385,7 @@ dependencies = [ [[package]] name = "icx-cert" -version = "0.34.0" +version = "0.35.0" dependencies = [ "anyhow", "base64 0.13.1", diff --git a/Cargo.toml b/Cargo.toml index d860d2df..c9b7b194 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ ] [workspace.package] -version = "0.34.0" +version = "0.35.0" authors = ["DFINITY Stiftung "] edition = "2021" repository = "https://github.com/dfinity/agent-rs" @@ -22,9 +22,9 @@ rust-version = "1.70.0" license = "Apache-2.0" [workspace.dependencies] -ic-agent = { path = "ic-agent", version = "0.34.0", default-features = false } -ic-utils = { path = "ic-utils", version = "0.34.0" } -ic-transport-types = { path = "ic-transport-types", version = "0.34.0" } +ic-agent = { path = "ic-agent", version = "0.35.0", default-features = false } +ic-utils = { path = "ic-utils", version = "0.35.0" } +ic-transport-types = { path = "ic-transport-types", version = "0.35.0" } ic-certification = "2.2" candid = "0.10.1"