From 1824e7ed36045f2452bace650df1ceb85baee43b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 14 Aug 2024 15:08:36 -0600 Subject: [PATCH] cosmos-sdk-proto v0.24.0 --- Cargo.lock | 2 +- cosmos-sdk-proto/CHANGELOG.md | 21 +++++++++++++++++++++ cosmos-sdk-proto/Cargo.toml | 2 +- cosmrs/Cargo.toml | 2 +- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eb8a86da..891824ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -278,7 +278,7 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "cosmos-sdk-proto" -version = "0.24.0-pre" +version = "0.24.0" dependencies = [ "informalsystems-pbjson", "prost", diff --git a/cosmos-sdk-proto/CHANGELOG.md b/cosmos-sdk-proto/CHANGELOG.md index 0b48588d..125e07b5 100644 --- a/cosmos-sdk-proto/CHANGELOG.md +++ b/cosmos-sdk-proto/CHANGELOG.md @@ -5,6 +5,27 @@ 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.24.0 (2024-08-14) +### Added +- `serde` feature for Protobuf JSON using `informalsystems/pbjson` ([#471]) + +### Changed +- Bump `tendermint-proto` to v0.39 ([#482]) +- Use `google.protobuf` types from `tendermint-proto` ([#482]) +- cosmos-sdk-go: bump to v0.50.9 ([#488]) +- wasmd: bump to v0.52.0 ([#489]) +- Use buf's `enable_type_names` feature ([#490]) +- proto-build: use `buf` to process ibc-go protos ([#491]) +- ibc-go: bump to v8.4.0 ([#492]) + +[#471]: https://github.com/cosmos/cosmos-rust/pull/471 +[#482]: https://github.com/cosmos/cosmos-rust/pull/482 +[#488]: https://github.com/cosmos/cosmos-rust/pull/488 +[#489]: https://github.com/cosmos/cosmos-rust/pull/489 +[#490]: https://github.com/cosmos/cosmos-rust/pull/490 +[#491]: https://github.com/cosmos/cosmos-rust/pull/491 +[#492]: https://github.com/cosmos/cosmos-rust/pull/492 + ## 0.23.0 (2024-08-02) ### Added - Support for `no_std` ([#478]) diff --git a/cosmos-sdk-proto/Cargo.toml b/cosmos-sdk-proto/Cargo.toml index 04ead1c3..3e378fe7 100644 --- a/cosmos-sdk-proto/Cargo.toml +++ b/cosmos-sdk-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cosmos-sdk-proto" -version = "0.24.0-pre" +version = "0.24.0" authors = [ "Justin Kilpatrick ", "Greg Szabo ", diff --git a/cosmrs/Cargo.toml b/cosmrs/Cargo.toml index fb399e97..76030a40 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.24.0-pre", default-features = false, features = ["std"], path = "../cosmos-sdk-proto" } +cosmos-sdk-proto = { version = "0.24", default-features = false, features = ["std"], path = "../cosmos-sdk-proto" } ecdsa = "0.16" eyre = "0.6" k256 = { version = "0.13", default-features = false, features = ["ecdsa", "sha256"] }