diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c852290..7623758c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [0.33.0] - 2024-02-08 * Changed the return type of `stored_chunks` to a struct. * Added a prime256v1-based `Identity` impl to complement the ed25519 and secp256k1 `Identity` impls. diff --git a/Cargo.lock b/Cargo.lock index 3ef46e84..d2fff119 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1051,7 +1051,7 @@ dependencies = [ [[package]] name = "ic-agent" -version = "0.32.0" +version = "0.33.0" dependencies = [ "backoff", "cached", @@ -1111,7 +1111,7 @@ dependencies = [ [[package]] name = "ic-identity-hsm" -version = "0.32.0" +version = "0.33.0" dependencies = [ "hex", "ic-agent", @@ -1123,7 +1123,7 @@ dependencies = [ [[package]] name = "ic-transport-types" -version = "0.32.0" +version = "0.33.0" dependencies = [ "candid", "hex", @@ -1139,7 +1139,7 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.32.0" +version = "0.33.0" dependencies = [ "async-trait", "candid", @@ -1188,7 +1188,7 @@ dependencies = [ [[package]] name = "icx" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "candid", @@ -1206,7 +1206,7 @@ dependencies = [ [[package]] name = "icx-cert" -version = "0.32.0" +version = "0.33.0" dependencies = [ "anyhow", "base64 0.13.1", diff --git a/Cargo.toml b/Cargo.toml index 83d9e01b..1388e857 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ ] [workspace.package] -version = "0.32.0" +version = "0.33.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.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-agent = { path = "ic-agent", version = "0.33.0", default-features = false } +ic-utils = { path = "ic-utils", version = "0.33.0" } +ic-transport-types = { path = "ic-transport-types", version = "0.33.0" } ic-certification = "2.2" candid = "0.10.1"