From 4c985a56555fdc8b95514d0c446262882e644419 Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Fri, 19 Jul 2024 12:51:51 +0200 Subject: [PATCH 1/3] Bump prost and tonic to latest versions in `tendermint` crate --- tendermint/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } From 03fdc33c09268348fb7dcb80a109b252dd7eea45 Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Mon, 22 Jul 2024 10:46:42 +0200 Subject: [PATCH 2/3] Add changelog entry --- .../unreleased/breaking-changes/1446-fix-prost-version.md | 5 +++++ 1 file changed, 5 insertions(+) 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..6ff0686f7 --- /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 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)) From 3d7c30d7578f0c7fa678d996d66329f923746b4d Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Mon, 22 Jul 2024 11:03:30 +0200 Subject: [PATCH 3/3] Update .changelog/unreleased/breaking-changes/1446-fix-prost-version.md --- .../unreleased/breaking-changes/1446-fix-prost-version.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changelog/unreleased/breaking-changes/1446-fix-prost-version.md b/.changelog/unreleased/breaking-changes/1446-fix-prost-version.md index 6ff0686f7..a13bf258a 100644 --- a/.changelog/unreleased/breaking-changes/1446-fix-prost-version.md +++ b/.changelog/unreleased/breaking-changes/1446-fix-prost-version.md @@ -1,4 +1,4 @@ -- `[tendermint]` Bump `prost` and `prost-types` to their latest versions in tendermint crate. +- `[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.