From bc651e9ceb79075e61a00819428cc782d1736fd9 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 27 Jun 2024 16:30:46 -0600 Subject: [PATCH] cosmrs v0.17.0 --- Cargo.lock | 2 +- cosmrs/CHANGELOG.md | 15 +++++++++++++++ cosmrs/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dec89ff6..58b10aa7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -274,7 +274,7 @@ dependencies = [ [[package]] name = "cosmrs" -version = "0.17.0-pre" +version = "0.17.0" dependencies = [ "bip32", "cosmos-sdk-proto", diff --git a/cosmrs/CHANGELOG.md b/cosmrs/CHANGELOG.md index 30f75617..84a4d01d 100644 --- a/cosmrs/CHANGELOG.md +++ b/cosmrs/CHANGELOG.md @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.17.0 (2024-06-27) +### Added +- Basic parsing of `msg_responses` field inside `TxMsgData` ([#472]) + +### Changed +- Bump tendermint-rs dependencies to v0.37 ([#469]) +- Match upstream Cosmos SDK's Denom validation logic ([#468], [#470]) +- Bump `cosmos-sdk-proto` to v0.22 ([#473]) + +[#468]: https://github.com/cosmos/cosmos-rust/pull/468 +[#469]: https://github.com/cosmos/cosmos-rust/pull/469 +[#470]: https://github.com/cosmos/cosmos-rust/pull/470 +[#472]: https://github.com/cosmos/cosmos-rust/pull/472 +[#473]: https://github.com/cosmos/cosmos-rust/pull/473 + ## 0.16.0 (2024-03-15) ### Added - Support for uppercase Bech32 ([#444]) diff --git a/cosmrs/Cargo.toml b/cosmrs/Cargo.toml index d90528d6..0dbaca6d 100644 --- a/cosmrs/Cargo.toml +++ b/cosmrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cosmrs" -version = "0.17.0-pre" +version = "0.17.0" authors = ["Tony Arcieri "] license = "Apache-2.0" repository = "https://github.com/cosmos/cosmos-rust/tree/main/cosmrs"