Skip to content

Commit

Permalink
fix: Bump prost and prost-types to latest versions in `tendermint…
Browse files Browse the repository at this point in the history
…` crate (#1446)

* Bump prost and tonic to latest versions in `tendermint` crate

* Add changelog entry

* Update .changelog/unreleased/breaking-changes/1446-fix-prost-version.md
  • Loading branch information
romac authored Jul 22, 2024
1 parent 475a1f8 commit 981bc34
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- `[tendermint]` Bump `prost` and `prost-types` to their latest versions in the `tendermint` crate.
This was missed in [#1444](https://github.com/informalsystems/tendermint-rs/pull/1444),
which only updated the two dependencies in `tendermint-rpc`, leading to duplicate versions
of both crates to be present in the dependency graph.
([#1446](https://github.com/informalsystems/tendermint-rs/pull/1446))
4 changes: 2 additions & 2 deletions tendermint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ ed25519 = { version = "2", default-features = false, features = ["alloc"] }
futures = { version = "0.3", default-features = false }
num-traits = { version = "0.2", default-features = false }
once_cell = { version = "1.3", default-features = false }
prost = { version = "0.12", default-features = false }
prost-types = { version = "0.12", default-features = false }
prost = { version = "0.13", default-features = false }
prost-types = { version = "0.13", default-features = false }
serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = { version = "1", default-features = false, features = ["alloc"] }
serde_bytes = { version = "0.11", default-features = false }
Expand Down

0 comments on commit 981bc34

Please sign in to comment.