From 9c4db330d96938d95eda69bbf5878db91aae0aa1 Mon Sep 17 00:00:00 2001 From: Adam Spofford <93943719+adamspofford-dfinity@users.noreply.github.com> Date: Thu, 21 Sep 2023 13:07:40 -0700 Subject: [PATCH] Release 0.28.0 (#472) --- 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 fdacc50d..07e0e0ac 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.28.0] - 2023-09-21 + * Added `DelegatedIdentity`, an `Identity` implementation for consuming delegations such as those from Internet Identity. * Replica protocol type definitions have been moved to an `ic-transport-types` crate. `ic-agent` still reexports the ones for its API. * The `Unknown` lookup of a request_status path in a certificate results in an `AgentError` (the IC returns `Absent` for non-existing paths). diff --git a/Cargo.lock b/Cargo.lock index dc58a9c5..3b487eeb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -996,7 +996,7 @@ dependencies = [ [[package]] name = "ic-agent" -version = "0.27.0" +version = "0.28.0" dependencies = [ "backoff", "candid", @@ -1052,7 +1052,7 @@ dependencies = [ [[package]] name = "ic-identity-hsm" -version = "0.27.0" +version = "0.28.0" dependencies = [ "hex", "ic-agent", @@ -1064,7 +1064,7 @@ dependencies = [ [[package]] name = "ic-transport-types" -version = "0.27.0" +version = "0.28.0" dependencies = [ "candid", "hex", @@ -1080,7 +1080,7 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.27.0" +version = "0.28.0" dependencies = [ "async-trait", "candid", @@ -1111,7 +1111,7 @@ dependencies = [ [[package]] name = "icx" -version = "0.27.0" +version = "0.28.0" dependencies = [ "anyhow", "candid", @@ -1128,7 +1128,7 @@ dependencies = [ [[package]] name = "icx-cert" -version = "0.27.0" +version = "0.28.0" dependencies = [ "anyhow", "base64 0.13.1", diff --git a/Cargo.toml b/Cargo.toml index ec9dcc63..4604955f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ ] [workspace.package] -version = "0.27.0" +version = "0.28.0" authors = ["DFINITY Stiftung "] edition = "2021" repository = "https://github.com/dfinity/agent-rs" @@ -21,9 +21,9 @@ rust-version = "1.65.0" license = "Apache-2.0" [workspace.dependencies] -ic-agent = { path = "ic-agent", version = "0.27.0", default-features = false } -ic-utils = { path = "ic-utils", version = "0.27.0" } -ic-transport-types = { path = "ic-transport-types", version = "0.27.0" } +ic-agent = { path = "ic-agent", version = "0.28.0", default-features = false } +ic-utils = { path = "ic-utils", version = "0.28.0" } +ic-transport-types = { path = "ic-transport-types", version = "0.28.0" } ic-certification = "0.27.0" candid = "0.9.5"