From ed0862a45d5973ff123cbabc4ac40a89821b18c6 Mon Sep 17 00:00:00 2001 From: Adam Spofford <93943719+adamspofford-dfinity@users.noreply.github.com> Date: Thu, 16 Nov 2023 15:34:28 -0800 Subject: [PATCH] Release 0.30.2 (#493) --- CHANGELOG.md | 4 ++++ Cargo.lock | 12 ++++++------ Cargo.toml | 8 ++++---- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 422e7fbc..0eb15d70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.30.2] = 20223-11-16 + +* Fixed a spurious certificate validation error in the five minutes after a node is added to a subnet + ## [0.30.1] - 2023-11-15 * Fixed `HyperTransport` endpoint construction (`//` in the format `/api/v2//canister/5v3p4-iyaaa-aaaaa-qaaaa-cai/query`) diff --git a/Cargo.lock b/Cargo.lock index d0ac7fad..02c91d43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1030,7 +1030,7 @@ dependencies = [ [[package]] name = "ic-agent" -version = "0.30.1" +version = "0.30.2" dependencies = [ "backoff", "cached", @@ -1089,7 +1089,7 @@ dependencies = [ [[package]] name = "ic-identity-hsm" -version = "0.30.1" +version = "0.30.2" dependencies = [ "hex", "ic-agent", @@ -1101,7 +1101,7 @@ dependencies = [ [[package]] name = "ic-transport-types" -version = "0.30.1" +version = "0.30.2" dependencies = [ "candid", "hex", @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "ic-utils" -version = "0.30.1" +version = "0.30.2" dependencies = [ "async-trait", "candid", @@ -1148,7 +1148,7 @@ dependencies = [ [[package]] name = "icx" -version = "0.30.1" +version = "0.30.2" dependencies = [ "anyhow", "candid", @@ -1165,7 +1165,7 @@ dependencies = [ [[package]] name = "icx-cert" -version = "0.30.1" +version = "0.30.2" dependencies = [ "anyhow", "base64 0.13.1", diff --git a/Cargo.toml b/Cargo.toml index 60bd813a..623d2ea8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ ] [workspace.package] -version = "0.30.1" +version = "0.30.2" 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.30.1", default-features = false } -ic-utils = { path = "ic-utils", version = "0.30.1" } -ic-transport-types = { path = "ic-transport-types", version = "0.30.1" } +ic-agent = { path = "ic-agent", version = "0.30.2", default-features = false } +ic-utils = { path = "ic-utils", version = "0.30.2" } +ic-transport-types = { path = "ic-transport-types", version = "0.30.2" } ic-certification = "1.2.0" candid = "0.9.5"