From cb72032db6d94f47f2a84246e3735c496174f24f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 27 Mar 2025 14:04:53 -0600 Subject: [PATCH] cosmos-sdk-proto v0.27.0 --- Cargo.lock | 2 +- cosmos-sdk-proto/CHANGELOG.md | 6 ++++++ cosmos-sdk-proto/Cargo.toml | 2 +- cosmos-sdk-proto/README.md | 4 ++-- cosmrs/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 766718cd..468105b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -254,7 +254,7 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "cosmos-sdk-proto" -version = "0.26.1" +version = "0.27.0" dependencies = [ "informalsystems-pbjson", "prost", diff --git a/cosmos-sdk-proto/CHANGELOG.md b/cosmos-sdk-proto/CHANGELOG.md index 3f604b15..85763e58 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.27.0 (2025-03-27) +### Changed +- Bump `tonic` to v0.13; MSRV 1.75 ([#520]) + +[#520]: https://github.com/cosmos/cosmos-rust/pull/520 + ## 0.26.1 (2024-11-08) ### Fixed - Make `serde` feature `no_std` compatible ([#513]) diff --git a/cosmos-sdk-proto/Cargo.toml b/cosmos-sdk-proto/Cargo.toml index c0e27f2b..f054b94e 100644 --- a/cosmos-sdk-proto/Cargo.toml +++ b/cosmos-sdk-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cosmos-sdk-proto" -version = "0.26.1" +version = "0.27.0" authors = [ "Justin Kilpatrick ", "Greg Szabo ", diff --git a/cosmos-sdk-proto/README.md b/cosmos-sdk-proto/README.md index 0eacc57e..1d681a16 100644 --- a/cosmos-sdk-proto/README.md +++ b/cosmos-sdk-proto/README.md @@ -20,7 +20,7 @@ Pull requests to expand coverage are welcome. ## Minimum Supported Rust Version -This crate is supported on Rust **1.72** or newer. +This crate is supported on Rust **1.75** or newer. [//]: # "badges" [crate-image]: https://img.shields.io/crates/v/cosmos-sdk-proto?logo=rust @@ -31,7 +31,7 @@ This crate is supported on Rust **1.72** or newer. [build-link]: https://github.com/cosmos/cosmos-rust/actions/workflows/cosmos-sdk-proto.yml [license-image]: https://img.shields.io/badge/license-Apache2.0-blue.svg [license-link]: https://github.com/cosmos/cosmos-rust/blob/master/LICENSE -[rustc-image]: https://img.shields.io/badge/rustc-1.72+-blue.svg +[rustc-image]: https://img.shields.io/badge/rustc-1.75+-blue.svg [//]: # "links" [Protobufs]: https://github.com/cosmos/cosmos-sdk/tree/master/proto/ diff --git a/cosmrs/Cargo.toml b/cosmrs/Cargo.toml index dca02ad4..4844d755 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.26", default-features = false, features = ["std"], path = "../cosmos-sdk-proto" } +cosmos-sdk-proto = { version = "0.27", 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"] }