From 999b74d412fa8c776de672944db54919bc5d09d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Laferri=C3=A8re?= Date: Tue, 22 Nov 2022 09:46:39 -0500 Subject: [PATCH] Release v0.23.0 (#250) * unclog release * bump version to 0.23.0 --- .../breaking-changes/208-tendermint-0.26.md | 0 .../features/237-add-othe-erorr-item.md | 0 .changelog/v0.23.0/summary.md | 3 +++ CHANGELOG.md | 18 ++++++++++++++++++ crates/ibc/Cargo.toml | 2 +- crates/ibc/src/lib.rs | 2 +- 6 files changed, 23 insertions(+), 2 deletions(-) rename .changelog/{unreleased => v0.23.0}/breaking-changes/208-tendermint-0.26.md (100%) rename .changelog/{unreleased => v0.23.0}/features/237-add-othe-erorr-item.md (100%) create mode 100644 .changelog/v0.23.0/summary.md diff --git a/.changelog/unreleased/breaking-changes/208-tendermint-0.26.md b/.changelog/v0.23.0/breaking-changes/208-tendermint-0.26.md similarity index 100% rename from .changelog/unreleased/breaking-changes/208-tendermint-0.26.md rename to .changelog/v0.23.0/breaking-changes/208-tendermint-0.26.md diff --git a/.changelog/unreleased/features/237-add-othe-erorr-item.md b/.changelog/v0.23.0/features/237-add-othe-erorr-item.md similarity index 100% rename from .changelog/unreleased/features/237-add-othe-erorr-item.md rename to .changelog/v0.23.0/features/237-add-othe-erorr-item.md diff --git a/.changelog/v0.23.0/summary.md b/.changelog/v0.23.0/summary.md new file mode 100644 index 000000000..96c6047b5 --- /dev/null +++ b/.changelog/v0.23.0/summary.md @@ -0,0 +1,3 @@ +This release mainly updates the tendermint-rs dependency to v0.26.0. + +There are no consensus-breaking changes. diff --git a/CHANGELOG.md b/CHANGELOG.md index 202b68e72..c94f56c65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # CHANGELOG +## v0.23.0 + +*November 21, 2022* + +This release mainly updates the tendermint-rs dependency to v0.26.0. + +There are no consensus-breaking changes. + +### BREAKING CHANGES + +- Update to tendermint-rs 0.26 and ibc-proto 0.22 + ([#208](https://github.com/cosmos/ibc-rs/issues/208)) + +### FEATURES + +- Add Other Item for Ics02Client,Ics03connection, Ics04Channel Error + ([#237](https://github.com/cosmos/ibc-rs/issues/237)) + ## v0.22.0 *November 9, 2022* diff --git a/crates/ibc/Cargo.toml b/crates/ibc/Cargo.toml index 2f88bc249..8c4aa94f9 100644 --- a/crates/ibc/Cargo.toml +++ b/crates/ibc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc" -version = "0.22.0" +version = "0.23.0" edition = "2021" license = "Apache-2.0" readme = "README.md" diff --git a/crates/ibc/src/lib.rs b/crates/ibc/src/lib.rs index 49d4f014c..8c186b8b6 100644 --- a/crates/ibc/src/lib.rs +++ b/crates/ibc/src/lib.rs @@ -13,7 +13,7 @@ rust_2018_idioms )] #![forbid(unsafe_code)] -#![doc(html_root_url = "https://docs.rs/ibc/0.22.0")] +#![doc(html_root_url = "https://docs.rs/ibc/0.23.0")] //! This library implements the InterBlockchain Communication (IBC) protocol in Rust. IBC is //! a distributed protocol that enables communication between distinct sovereign blockchains.