diff --git a/CHANGELOG.md b/CHANGELOG.md index 49cfbaaf..247f6ddc 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.2] - 2024-09-30 + * Limited the number of HTTP 429 retries. Users receiving this error should configure `with_max_concurrent_requests`. * Added `Envelope::encode_bytes` and `Query/UpdateBuilder::into_envelope` for external signing workflows. * Added `AgentBuilder::with_arc_http_middleware` for `Transport`-like functionality at the level of HTTP requests. diff --git a/Cargo.lock b/Cargo.lock index e68ebca9..1fe7d4fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1044,7 +1044,7 @@ dependencies = [ [[package]] name = "ic-agent" -version = "0.38.1" +version = "0.38.2" dependencies = [ "arc-swap", "async-channel", @@ -1111,7 +1111,7 @@ dependencies = [ [[package]] name = "ic-identity-hsm" -version = "0.38.1" +version = "0.38.2" dependencies = [ "hex", "ic-agent", @@ -1123,7 +1123,7 @@ dependencies = [ [[package]] name = "ic-transport-types" -version = "0.38.1" +version = "0.38.2" dependencies = [ "candid", "hex", @@ -1140,7 +1140,7 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.38.1" +version = "0.38.2" dependencies = [ "async-trait", "candid", @@ -1203,7 +1203,7 @@ dependencies = [ [[package]] name = "icx" -version = "0.38.1" +version = "0.38.2" dependencies = [ "anyhow", "candid", @@ -1221,7 +1221,7 @@ dependencies = [ [[package]] name = "icx-cert" -version = "0.38.1" +version = "0.38.2" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index 17240f3a..07276902 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ ] [workspace.package] -version = "0.38.1" +version = "0.38.2" 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.1", default-features = false } -ic-utils = { path = "ic-utils", version = "0.38.1" } -ic-transport-types = { path = "ic-transport-types", version = "0.38.1" } +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-certification = "2.2" candid = "0.10.1"