From d94d08b7894613153be3731c663d080998e03c75 Mon Sep 17 00:00:00 2001 From: "Tony Arcieri (iqlusion)" Date: Fri, 2 Aug 2024 19:49:33 -0600 Subject: [PATCH] cosmos-sdk-proto v0.23.0 (#480) --- Cargo.lock | 2 +- cosmos-sdk-proto/CHANGELOG.md | 10 ++++++++++ cosmos-sdk-proto/Cargo.toml | 2 +- cosmrs/Cargo.toml | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 199f361b..382ed81e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -278,7 +278,7 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "cosmos-sdk-proto" -version = "0.23.0-pre" +version = "0.23.0" dependencies = [ "prost 0.13.1", "prost-types 0.13.1", diff --git a/cosmos-sdk-proto/CHANGELOG.md b/cosmos-sdk-proto/CHANGELOG.md index 49829cb2..0b48588d 100644 --- a/cosmos-sdk-proto/CHANGELOG.md +++ b/cosmos-sdk-proto/CHANGELOG.md @@ -5,6 +5,16 @@ 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.23.0 (2024-08-02) +### Added +- Support for `no_std` ([#478]) + +### Changed +- Bump `tendermint-proto` dependency to v0.38 ([#476]) + +[#476]: https://github.com/cosmos/cosmos-rust/pull/476 +[#478]: https://github.com/cosmos/cosmos-rust/pull/478 + ## 0.22.0 (2024-06-27) ### Changed - Bump `tendermint-proto` dependency to v0.37 ([#469]) diff --git a/cosmos-sdk-proto/Cargo.toml b/cosmos-sdk-proto/Cargo.toml index 329e404d..ff22a7e9 100644 --- a/cosmos-sdk-proto/Cargo.toml +++ b/cosmos-sdk-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cosmos-sdk-proto" -version = "0.23.0-pre" +version = "0.23.0" authors = [ "Justin Kilpatrick ", "Greg Szabo ", diff --git a/cosmrs/Cargo.toml b/cosmrs/Cargo.toml index 081b2dd3..bafcd9fd 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.23.0-pre", default-features = false, features = ["std"], path = "../cosmos-sdk-proto" } +cosmos-sdk-proto = { version = "0.23", 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"] }