From be4a87c5abcdfb3e517098e3b69d4e28030be043 Mon Sep 17 00:00:00 2001 From: Farhad Shabani Date: Fri, 15 Nov 2024 04:53:03 -0800 Subject: [PATCH] chore: update changelog --- ...-bump-ibc-proto-and-tendermint-and-msrv.md | 0 ...imeout-check-in-MsgTransfer-conversions.md | 0 ...374-optimize-vec-push-avoid-realloc-mem.md | 0 .changelog/v0.56.0/summary.md | 6 +++++ CHANGELOG.md | 24 +++++++++++++++++++ 5 files changed, 30 insertions(+) rename .changelog/{unreleased => v0.56.0}/breaking-changes/1375-bump-ibc-proto-and-tendermint-and-msrv.md (100%) rename .changelog/{unreleased => v0.56.0}/improvements/1362-relax-timeout-check-in-MsgTransfer-conversions.md (100%) rename .changelog/{unreleased => v0.56.0}/improvements/1374-optimize-vec-push-avoid-realloc-mem.md (100%) create mode 100644 .changelog/v0.56.0/summary.md diff --git a/.changelog/unreleased/breaking-changes/1375-bump-ibc-proto-and-tendermint-and-msrv.md b/.changelog/v0.56.0/breaking-changes/1375-bump-ibc-proto-and-tendermint-and-msrv.md similarity index 100% rename from .changelog/unreleased/breaking-changes/1375-bump-ibc-proto-and-tendermint-and-msrv.md rename to .changelog/v0.56.0/breaking-changes/1375-bump-ibc-proto-and-tendermint-and-msrv.md diff --git a/.changelog/unreleased/improvements/1362-relax-timeout-check-in-MsgTransfer-conversions.md b/.changelog/v0.56.0/improvements/1362-relax-timeout-check-in-MsgTransfer-conversions.md similarity index 100% rename from .changelog/unreleased/improvements/1362-relax-timeout-check-in-MsgTransfer-conversions.md rename to .changelog/v0.56.0/improvements/1362-relax-timeout-check-in-MsgTransfer-conversions.md diff --git a/.changelog/unreleased/improvements/1374-optimize-vec-push-avoid-realloc-mem.md b/.changelog/v0.56.0/improvements/1374-optimize-vec-push-avoid-realloc-mem.md similarity index 100% rename from .changelog/unreleased/improvements/1374-optimize-vec-push-avoid-realloc-mem.md rename to .changelog/v0.56.0/improvements/1374-optimize-vec-push-avoid-realloc-mem.md diff --git a/.changelog/v0.56.0/summary.md b/.changelog/v0.56.0/summary.md new file mode 100644 index 000000000..ec6eaace4 --- /dev/null +++ b/.changelog/v0.56.0/summary.md @@ -0,0 +1,6 @@ + +This release upgrades the `ibc-proto` and `tendermint-rs` dependencies to +`v0.51.1` and `v0.40.0`, respectively. It also updates the minimum supported +Rust version (MSRV) to `1.75.0`. + +There are no consensus-breaking changes in this release. diff --git a/CHANGELOG.md b/CHANGELOG.md index ebb285c4f..5e31a933e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # CHANGELOG +## v0.56.0 + +*November 15, 2024* + +This release upgrades the `ibc-proto` and `tendermint-rs` dependencies to +`v0.51.1` and `v0.40.0`, respectively. It also updates the minimum supported +Rust version (MSRV) to `1.75.0`. + +There are no consensus-breaking changes in this release. + +### BREAKING CHANGES + +- [ibc] Update `ibc-proto` to `v0.51.1` and `tendermint` to `v0.40.0`. + ([\#1375](https://github.com/cosmos/ibc-rs/pull/1375)) +- [ibc] Update MSRV to `1.75.0`. + ([\#1375](https://github.com/cosmos/ibc-rs/pull/1375)) + +### IMPROVEMENTS + +- [ibc-apps] Relax timeout check during `MsgTransfer` proto to domain + conversions ([#1362](https://github.com/cosmos/ibc-rs/issues/1362)). +- [ibc-app-nft-transfer] Preallocate `Vec` to avoid reallocation of memory + ([\#1374](https://github.com/cosmos/ibc-rs/pull/1374)). + ## v0.55.1 *October 17, 2024*