diff --git a/.changelog/unreleased/breaking-changes/420-abstract-upgrade-proposal.md b/.changelog/v0.41.0/breaking-changes/420-abstract-upgrade-proposal.md similarity index 100% rename from .changelog/unreleased/breaking-changes/420-abstract-upgrade-proposal.md rename to .changelog/v0.41.0/breaking-changes/420-abstract-upgrade-proposal.md diff --git a/.changelog/unreleased/breaking-changes/681-client-state-methods.md b/.changelog/v0.41.0/breaking-changes/681-client-state-methods.md similarity index 100% rename from .changelog/unreleased/breaking-changes/681-client-state-methods.md rename to .changelog/v0.41.0/breaking-changes/681-client-state-methods.md diff --git a/.changelog/unreleased/breaking-changes/689-bump-ibc-proto-to-0.30.md b/.changelog/v0.41.0/breaking-changes/689-bump-ibc-proto-to-0.30.md similarity index 100% rename from .changelog/unreleased/breaking-changes/689-bump-ibc-proto-to-0.30.md rename to .changelog/v0.41.0/breaking-changes/689-bump-ibc-proto-to-0.30.md diff --git a/.changelog/unreleased/bug-fixes/672-fix-upgraded-client-cons-states-encoding.md b/.changelog/v0.41.0/bug-fixes/672-fix-upgraded-client-cons-states-encoding.md similarity index 100% rename from .changelog/unreleased/bug-fixes/672-fix-upgraded-client-cons-states-encoding.md rename to .changelog/v0.41.0/bug-fixes/672-fix-upgraded-client-cons-states-encoding.md diff --git a/.changelog/unreleased/features/687-fix-borsh-timstamp-ser-der.md b/.changelog/v0.41.0/features/687-fix-borsh-timstamp-ser-der.md similarity index 100% rename from .changelog/unreleased/features/687-fix-borsh-timstamp-ser-der.md rename to .changelog/v0.41.0/features/687-fix-borsh-timstamp-ser-der.md diff --git a/.changelog/unreleased/improvements/141-clarify-upgrade-path-usage.md b/.changelog/v0.41.0/improvements/141-clarify-upgrade-path-usage.md similarity index 100% rename from .changelog/unreleased/improvements/141-clarify-upgrade-path-usage.md rename to .changelog/v0.41.0/improvements/141-clarify-upgrade-path-usage.md diff --git a/.changelog/unreleased/improvements/385-refactor-upgrade-client-tests.md b/.changelog/v0.41.0/improvements/385-refactor-upgrade-client-tests.md similarity index 100% rename from .changelog/unreleased/improvements/385-refactor-upgrade-client-tests.md rename to .changelog/v0.41.0/improvements/385-refactor-upgrade-client-tests.md diff --git a/.changelog/unreleased/improvements/671-client-state-conversion-refinement.md b/.changelog/v0.41.0/improvements/671-client-state-conversion-refinement.md similarity index 100% rename from .changelog/unreleased/improvements/671-client-state-conversion-refinement.md rename to .changelog/v0.41.0/improvements/671-client-state-conversion-refinement.md diff --git a/.changelog/unreleased/improvements/674-remove-too-many-args.md b/.changelog/v0.41.0/improvements/674-remove-too-many-args.md similarity index 100% rename from .changelog/unreleased/improvements/674-remove-too-many-args.md rename to .changelog/v0.41.0/improvements/674-remove-too-many-args.md diff --git a/.changelog/unreleased/improvements/684-fix-Amount.md b/.changelog/v0.41.0/improvements/684-fix-Amount.md similarity index 100% rename from .changelog/unreleased/improvements/684-fix-Amount.md rename to .changelog/v0.41.0/improvements/684-fix-Amount.md diff --git a/.changelog/v0.41.0/summary.md b/.changelog/v0.41.0/summary.md new file mode 100644 index 000000000..81ea28cc2 --- /dev/null +++ b/.changelog/v0.41.0/summary.md @@ -0,0 +1,3 @@ +This release bumps ibc-proto to v0.30.0 and tendermint to v0.31, and provides utilities for chain upgrades (Tendermint only). + +There are consensus-breaking changes. diff --git a/CHANGELOG.md b/CHANGELOG.md index 01b34a10d..f2e7bcaa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,45 @@ # CHANGELOG +## v0.41.0 + +*May 23, 2023* + +This release bumps ibc-proto to v0.30.0 and tendermint to v0.31, and provides utilities for chain upgrades (Tendermint only). + +There are consensus-breaking changes. + +### BREAKING CHANGES + +- Support for upgrade client proposal by featuring helper contexts and domain types + ([#420](https://github.com/cosmos/ibc-rs/issues/420)) +- Remove unused `ClientState` methods + ([#681](https://github.com/cosmos/ibc-rs/issues/681)) +- Bump ibc-proto to v0.30.0 and tendermint to v0.31 + ([#689](https://github.com/cosmos/ibc-rs/issues/689)) + +### BUG FIXES + +- Encode upgraded client/consensus states for upgrade_client validation using `prost::Message` + from pros ([#672](https://github.com/cosmos/ibc-rs/issues/672)) + +### FEATURES + +- Timestamp ser and der failed on borsh feature + ([#687](https://github.com/cosmos/ibc-rs/issues/687)) + +### IMPROVEMENTS + +- Clarify usage of `upgrade_path` for handling upgrade proposals + ([#141](https://github.com/cosmos/ibc-rs/issues/141)) +- Refactor tests for upgrade_client implementation + ([#385](https://github.com/cosmos/ibc-rs/issues/385)) +- Exclude `ClientState::new()` checks from proto ClientState conversion + ([#671](https://github.com/cosmos/ibc-rs/issues/671)) +- Remove redundant #[allow(clippy::too_many_arguments)] + ([#674](https://github.com/cosmos/ibc-rs/issues/674)) +- Token transfer: Make `Amount` type less restrictive + ([#684](https://github.com/cosmos/ibc-rs/issues/684)) + ## v0.40.0 *May 8, 2023* @@ -8,7 +48,7 @@ This release primarily consolidated the modules in the ibc-rs crate, removed man There were also a few minor validation checks missing, which we added. These were pretty much the last remaining known ones. -There are breaking changes. +There are consensus-breaking changes. ### BREAKING CHANGES diff --git a/crates/ibc/Cargo.toml b/crates/ibc/Cargo.toml index 8100c4b8e..18d3b44d5 100644 --- a/crates/ibc/Cargo.toml +++ b/crates/ibc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc" -version = "0.40.0" +version = "0.41.0" edition = "2021" license = "Apache-2.0" readme = "README.md"