From c11d6409f4cabe46034af676d5dabb171652aa2e Mon Sep 17 00:00:00 2001 From: "Tony Arcieri (iqlusion)" Date: Thu, 24 Oct 2024 07:31:48 -0600 Subject: [PATCH] cosmos-sdk-proto v0.26.0 (#508) --- Cargo.lock | 2 +- cosmos-sdk-proto/CHANGELOG.md | 6 ++++++ cosmos-sdk-proto/Cargo.toml | 2 +- cosmrs/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 188c141a..1ec8aafb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -278,7 +278,7 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "cosmos-sdk-proto" -version = "0.25.0" +version = "0.26.0" dependencies = [ "informalsystems-pbjson", "prost", diff --git a/cosmos-sdk-proto/CHANGELOG.md b/cosmos-sdk-proto/CHANGELOG.md index 98fc6130..877ffa1f 100644 --- a/cosmos-sdk-proto/CHANGELOG.md +++ b/cosmos-sdk-proto/CHANGELOG.md @@ -5,6 +5,12 @@ 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.26.0 (2024-10-24) +### Changed +- Bump `tendermint-proto` to v0.40 ([#506]) + +[#506]: https://github.com/cosmos/cosmos-rust/pull/506 + ## 0.25.0 (2024-09-09) ### Changed - Use tendermint proto from `tendermint_proto` instead of `tendermint_proto::v0_34` ([#495]) diff --git a/cosmos-sdk-proto/Cargo.toml b/cosmos-sdk-proto/Cargo.toml index fb1e1a23..50674b9e 100644 --- a/cosmos-sdk-proto/Cargo.toml +++ b/cosmos-sdk-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cosmos-sdk-proto" -version = "0.25.0" +version = "0.26.0" authors = [ "Justin Kilpatrick ", "Greg Szabo ", diff --git a/cosmrs/Cargo.toml b/cosmrs/Cargo.toml index 1ff5c3c7..73b21417 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.25", default-features = false, features = ["std"], path = "../cosmos-sdk-proto" } +cosmos-sdk-proto = { version = "0.26", 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"] }