From a301d013e3c4ec72f1adc8369886a951209f09d9 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 15 Mar 2024 16:02:02 -0600 Subject: [PATCH] cosmos-sdk-proto v0.21.0 --- Cargo.lock | 2 +- cosmos-sdk-proto/CHANGELOG.md | 10 ++++++++-- cosmos-sdk-proto/Cargo.toml | 2 +- cosmrs/Cargo.toml | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 868f0f71..8d28967b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -264,7 +264,7 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "cosmos-sdk-proto" -version = "0.21.0-pre" +version = "0.21.0" dependencies = [ "prost", "prost-types", diff --git a/cosmos-sdk-proto/CHANGELOG.md b/cosmos-sdk-proto/CHANGELOG.md index 35508fc3..655a7f5a 100644 --- a/cosmos-sdk-proto/CHANGELOG.md +++ b/cosmos-sdk-proto/CHANGELOG.md @@ -5,9 +5,15 @@ 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). -## Unreleased (0.21.0) +## 0.21.0 (2024-03-15) ### Changed -- Update `tonic` to v0.11 +- Update `tonic` to v0.11 ([#460]) +- Bump `tendermint-proto` dependency to v0.35 ([#461]) +- Use `prost-build` to gen IBC `Name` impls ([#462]) + +[#460]: https://github.com/cosmos/cosmos-rust/pull/460 +[#461]: https://github.com/cosmos/cosmos-rust/pull/461 +[#462]: https://github.com/cosmos/cosmos-rust/pull/462 ## 0.20.0 (2023-10-03) ### Added diff --git a/cosmos-sdk-proto/Cargo.toml b/cosmos-sdk-proto/Cargo.toml index e3d7fdde..fb3206fe 100644 --- a/cosmos-sdk-proto/Cargo.toml +++ b/cosmos-sdk-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cosmos-sdk-proto" -version = "0.21.0-pre" +version = "0.21.0" authors = [ "Justin Kilpatrick ", "Greg Szabo ", diff --git a/cosmrs/Cargo.toml b/cosmrs/Cargo.toml index 43798391..2d8f857d 100644 --- a/cosmrs/Cargo.toml +++ b/cosmrs/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" rust-version = "1.72" [dependencies] -cosmos-sdk-proto = { version = "=0.21.0-pre", default-features = false, path = "../cosmos-sdk-proto" } +cosmos-sdk-proto = { version = "0.21", default-features = false, path = "../cosmos-sdk-proto" } ecdsa = "0.16" eyre = "0.6" k256 = { version = "0.13", default-features = false, features = ["ecdsa", "sha256"] }