From 0f2cb4e7da3822e443fc09f15e625a957b9d060d Mon Sep 17 00:00:00 2001 From: Philippe Laferriere Date: Tue, 2 May 2023 15:58:28 -0400 Subject: [PATCH] unclog release --- .../breaking-changes/559-bump-ibc-proto.md | 0 ...21-missing-client-identifier-validation.md | 0 .../619-add-customizable-signer-validation.md | 0 .changelog/v0.39.0/summary.md | 5 ++++ CHANGELOG.md | 24 +++++++++++++++++++ 5 files changed, 29 insertions(+) rename .changelog/{unreleased => v0.39.0}/breaking-changes/559-bump-ibc-proto.md (100%) rename .changelog/{unreleased => v0.39.0}/breaking-changes/621-missing-client-identifier-validation.md (100%) rename .changelog/{unreleased => v0.39.0}/features/619-add-customizable-signer-validation.md (100%) create mode 100644 .changelog/v0.39.0/summary.md diff --git a/.changelog/unreleased/breaking-changes/559-bump-ibc-proto.md b/.changelog/v0.39.0/breaking-changes/559-bump-ibc-proto.md similarity index 100% rename from .changelog/unreleased/breaking-changes/559-bump-ibc-proto.md rename to .changelog/v0.39.0/breaking-changes/559-bump-ibc-proto.md diff --git a/.changelog/unreleased/breaking-changes/621-missing-client-identifier-validation.md b/.changelog/v0.39.0/breaking-changes/621-missing-client-identifier-validation.md similarity index 100% rename from .changelog/unreleased/breaking-changes/621-missing-client-identifier-validation.md rename to .changelog/v0.39.0/breaking-changes/621-missing-client-identifier-validation.md diff --git a/.changelog/unreleased/features/619-add-customizable-signer-validation.md b/.changelog/v0.39.0/features/619-add-customizable-signer-validation.md similarity index 100% rename from .changelog/unreleased/features/619-add-customizable-signer-validation.md rename to .changelog/v0.39.0/features/619-add-customizable-signer-validation.md diff --git a/.changelog/v0.39.0/summary.md b/.changelog/v0.39.0/summary.md new file mode 100644 index 000000000..28342a5b2 --- /dev/null +++ b/.changelog/v0.39.0/summary.md @@ -0,0 +1,5 @@ +This release primarily adds support for the `memo` field to the token transfer +app (ICS 20). This required updating ibc-proto-rs and tendermint-rs dependencies +as well. + +There are consensus-breaking changes. diff --git a/CHANGELOG.md b/CHANGELOG.md index a0c5557a5..b39830e2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # CHANGELOG +## v0.39.0 + +*May 2, 2023* + +This release primarily adds support for the `memo` field to the token transfer +app (ICS 20). This required updating ibc-proto-rs and tendermint-rs dependencies +as well. + +There are consensus-breaking changes. + +### BREAKING CHANGES + +- Bump ibc-proto to v0.29.0, bump tendermint to v0.30.0, and add `memo` field to + `PacketData` ([#559](https://github.com/cosmos/ibc-rs/issues/559)) +- Add missing `ClientType` and `ClientId` validation checks and move `ClientType` under the + ICS24 section + ([#621](https://github.com/cosmos/ibc-rs/issues/621)) + +### FEATURES + +- Define a new `ValidationContext::validate_message_signer` method to allow + validation of the `signer` field in messages across all handlers. + ([#619](https://github.com/cosmos/ibc-rs/issues/619)) + ## v0.38.0 *April 24, 2023*