Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cosmos-sdk-proto v0.24.0 #493

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions cosmos-sdk-proto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
2 changes: 1 addition & 1 deletion cosmos-sdk-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmos-sdk-proto"
version = "0.24.0-pre"
version = "0.24.0"
authors = [
"Justin Kilpatrick <justin@althea.net>",
"Greg Szabo <greg@informal.systems>",
Expand Down
2 changes: 1 addition & 1 deletion cosmrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
Loading