From 981bc34fb69189533c1ec069537644435ec5b82a Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Mon, 22 Jul 2024 13:28:13 +0200 Subject: [PATCH] fix: Bump `prost` and `prost-types` to latest versions in `tendermint` 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 --- .../unreleased/breaking-changes/1446-fix-prost-version.md | 5 +++++ tendermint/Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changelog/unreleased/breaking-changes/1446-fix-prost-version.md diff --git a/.changelog/unreleased/breaking-changes/1446-fix-prost-version.md b/.changelog/unreleased/breaking-changes/1446-fix-prost-version.md new file mode 100644 index 000000000..a13bf258a --- /dev/null +++ b/.changelog/unreleased/breaking-changes/1446-fix-prost-version.md @@ -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)) diff --git a/tendermint/Cargo.toml b/tendermint/Cargo.toml index bf1605dc9..07e5083c0 100644 --- a/tendermint/Cargo.toml +++ b/tendermint/Cargo.toml @@ -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 }