diff --git a/.changelog/unreleased/breaking-changes/1467-v038-dialect.md b/.changelog/v0.40.0/breaking-changes/1467-v038-dialect.md similarity index 100% rename from .changelog/unreleased/breaking-changes/1467-v038-dialect.md rename to .changelog/v0.40.0/breaking-changes/1467-v038-dialect.md diff --git a/.changelog/unreleased/bug-fixes/1467-v038-evidence.md b/.changelog/v0.40.0/bug-fixes/1467-v038-evidence.md similarity index 100% rename from .changelog/unreleased/bug-fixes/1467-v038-evidence.md rename to .changelog/v0.40.0/bug-fixes/1467-v038-evidence.md diff --git a/.changelog/v0.40.0/summary.md b/.changelog/v0.40.0/summary.md new file mode 100644 index 000000000..741f470fd --- /dev/null +++ b/.changelog/v0.40.0/summary.md @@ -0,0 +1,3 @@ +*October 23rd, 2024* + +This release adds a new dialect for CometBFT `v0.38.x`, enabling the correct serialization of misbehavior `Evidence`. This improvement ensures compatibility with CometBFT `v0.38.x`, addressing specific issues in evidence handling for this version. diff --git a/CHANGELOG.md b/CHANGELOG.md index beff85438..1f66d1135 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # CHANGELOG +## v0.40.0 + +*October 23rd, 2024* + +This release adds a new dialect for CometBFT `v0.38.x`, enabling the correct serialization of misbehavior `Evidence`. This improvement ensures compatibility with CometBFT `v0.38.x`, addressing specific issues in evidence handling for this version. + +### BREAKING CHANGES + +- [tendermint-rpc] Add new dialect for CometBFT v0.38.x + ([\#1467](https://github.com/informalsystems/tendermint-rs/pull/1467)) + +### BUG FIXES + +- [tendermint-rpc] Fix serialization of misbehaviour `Evidence` + on CometBFT v0.38.x using the newly introduced dialect + ([\#1467](https://github.com/informalsystems/tendermint-rs/pull/1467)) + ## v0.39.1 *August 9th, 2024* diff --git a/abci/Cargo.toml b/abci/Cargo.toml index 28eb0eaae..aae22f4be 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-abci" -version = "0.39.1" +version = "0.40.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" @@ -33,7 +33,7 @@ binary = [ [dependencies] bytes = { version = "1.0", default-features = false } prost = { version = "0.13", default-features = false } -tendermint-proto = { version = "0.39.1", default-features = false, path = "../proto" } +tendermint-proto = { version = "0.40.0", default-features = false, path = "../proto" } tracing = { version = "0.1", default-features = false } flex-error = { version = "0.4.4", default-features = false } structopt = { version = "0.3", optional = true, default-features = false } diff --git a/config/Cargo.toml b/config/Cargo.toml index 8532c1cdc..ca8347a3a 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-config" -version = "0.39.1" # Also update depending crates (rpc, light-node, ..) when bumping this. +version = "0.40.0" # Also update depending crates (rpc, light-node, ..) when bumping this. license = "Apache-2.0" homepage = "https://www.tendermint.com/" repository = "https://github.com/informalsystems/tendermint-rs/tree/main/tendermint" @@ -24,7 +24,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -tendermint = { version = "0.39.1", default-features = false, features = ["rust-crypto"], path = "../tendermint" } +tendermint = { version = "0.40.0", default-features = false, features = ["rust-crypto"], path = "../tendermint" } flex-error = { version = "0.4.4", default-features = false } serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/light-client-cli/Cargo.toml b/light-client-cli/Cargo.toml index f06531cdf..637a05e3f 100644 --- a/light-client-cli/Cargo.toml +++ b/light-client-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-light-client-cli" -version = "0.39.1" +version = "0.40.0" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -23,10 +23,10 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -tendermint = { version = "0.39.1", path = "../tendermint" } -tendermint-rpc = { version = "0.39.1", path = "../rpc", features = ["http-client"] } -tendermint-light-client = { version = "0.39.1", path = "../light-client" } -tendermint-light-client-detector = { version = "0.39.1", path = "../light-client-detector" } +tendermint = { version = "0.40.0", path = "../tendermint" } +tendermint-rpc = { version = "0.40.0", path = "../rpc", features = ["http-client"] } +tendermint-light-client = { version = "0.40.0", path = "../light-client" } +tendermint-light-client-detector = { version = "0.40.0", path = "../light-client-detector" } clap = { version = "4.1.8", features = ["derive"] } color-eyre = "0.6.2" diff --git a/light-client-detector/Cargo.toml b/light-client-detector/Cargo.toml index 993109de6..85d52497f 100644 --- a/light-client-detector/Cargo.toml +++ b/light-client-detector/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-light-client-detector" -version = "0.39.1" +version = "0.40.0" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -23,10 +23,10 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -tendermint = { version = "0.39.1", path = "../tendermint" } -tendermint-rpc = { version = "0.39.1", path = "../rpc", features = ["http-client"] } -tendermint-proto = { version = "0.39.1", path = "../proto" } -tendermint-light-client = { version = "0.39.1", path = "../light-client" } +tendermint = { version = "0.40.0", path = "../tendermint" } +tendermint-rpc = { version = "0.40.0", path = "../rpc", features = ["http-client"] } +tendermint-proto = { version = "0.40.0", path = "../proto" } +tendermint-light-client = { version = "0.40.0", path = "../light-client" } crossbeam-channel = { version = "0.5.11", default-features = false } derive_more = { version = "0.99.5", default-features = false, features = ["display"] } diff --git a/light-client-js/Cargo.toml b/light-client-js/Cargo.toml index c0fe7624c..a27daee31 100644 --- a/light-client-js/Cargo.toml +++ b/light-client-js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-light-client-js" -version = "0.39.1" +version = "0.40.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" @@ -22,8 +22,8 @@ default = ["console_error_panic_hook"] [dependencies] serde = { version = "1.0", default-features = false, features = [ "derive" ] } serde_json = { version = "1.0", default-features = false } -tendermint = { version = "0.39.1", default-features = false, path = "../tendermint" } -tendermint-light-client-verifier = { version = "0.39.1", features = ["rust-crypto"], default-features = false, path = "../light-client-verifier" } +tendermint = { version = "0.40.0", default-features = false, path = "../tendermint" } +tendermint-light-client-verifier = { version = "0.40.0", features = ["rust-crypto"], default-features = false, path = "../light-client-verifier" } wasm-bindgen = { version = "0.2.63", default-features = false, features = [ "serde-serialize" ] } serde-wasm-bindgen = { version = "0.4.5", default-features = false } diff --git a/light-client-verifier/Cargo.toml b/light-client-verifier/Cargo.toml index 899f76cea..9e437448c 100644 --- a/light-client-verifier/Cargo.toml +++ b/light-client-verifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-light-client-verifier" -version = "0.39.1" +version = "0.40.0" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -27,7 +27,7 @@ default = ["rust-crypto", "flex-error/std"] rust-crypto = ["tendermint/rust-crypto"] [dependencies] -tendermint = { version = "0.39.1", path = "../tendermint", default-features = false } +tendermint = { version = "0.40.0", path = "../tendermint", default-features = false } derive_more = { version = "0.99.5", default-features = false, features = ["display"] } serde = { version = "1.0.106", default-features = false } diff --git a/light-client/Cargo.toml b/light-client/Cargo.toml index 673dd4c1d..86d0a3834 100644 --- a/light-client/Cargo.toml +++ b/light-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-light-client" -version = "0.39.1" +version = "0.40.0" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -35,9 +35,9 @@ unstable = ["rust-crypto"] mbt = ["rust-crypto"] [dependencies] -tendermint = { version = "0.39.1", path = "../tendermint", default-features = false } -tendermint-rpc = { version = "0.39.1", path = "../rpc", default-features = false } -tendermint-light-client-verifier = { version = "0.39.1", path = "../light-client-verifier", default-features = false } +tendermint = { version = "0.40.0", path = "../tendermint", default-features = false } +tendermint-rpc = { version = "0.40.0", path = "../rpc", default-features = false } +tendermint-light-client-verifier = { version = "0.40.0", path = "../light-client-verifier", default-features = false } contracts = { version = "0.6.2", default-features = false } crossbeam-channel = { version = "0.5.11", default-features = false, features = ["std"] } @@ -57,7 +57,7 @@ regex = { version = "1.7.3" } [dev-dependencies] tendermint-testgen = { path = "../testgen", default-features = false } -tendermint-light-client-verifier = { version = "0.39.1", path = "../light-client-verifier", features = ["rust-crypto"] } +tendermint-light-client-verifier = { version = "0.40.0", path = "../light-client-verifier", features = ["rust-crypto"] } serde_json = { version = "1.0.51", default-features = false } gumdrop = { version = "0.8.0", default-features = false } diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml index 8c644fcee..571076946 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-p2p" -version = "0.39.1" +version = "0.40.0" edition = "2021" license = "Apache-2.0" repository = "https://github.com/informalsystems/tendermint-rs" @@ -44,9 +44,9 @@ aead = { version = "0.5", default-features = false } flex-error = { version = "0.4.4", default-features = false } # path dependencies -tendermint = { path = "../tendermint", version = "0.39.1", default-features = false } -tendermint-proto = { path = "../proto", version = "0.39.1", default-features = false } -tendermint-std-ext = { path = "../std-ext", version = "0.39.1", default-features = false } +tendermint = { path = "../tendermint", version = "0.40.0", default-features = false } +tendermint-proto = { path = "../proto", version = "0.40.0", default-features = false } +tendermint-std-ext = { path = "../std-ext", version = "0.40.0", default-features = false } # optional dependencies prost-derive = { version = "0.13", optional = true } diff --git a/pbt-gen/Cargo.toml b/pbt-gen/Cargo.toml index b2641a308..d1ad05307 100644 --- a/pbt-gen/Cargo.toml +++ b/pbt-gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-pbt-gen" -version = "0.39.1" +version = "0.40.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" diff --git a/proto/Cargo.toml b/proto/Cargo.toml index a41e2f504..e7a68cad4 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-proto" -version = "0.39.1" +version = "0.40.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 002dc99a6..6e70480c4 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc" -version = "0.39.1" +version = "0.40.0" edition = "2021" license = "Apache-2.0" homepage = "https://www.tendermint.com/" @@ -64,9 +64,9 @@ mock-client = [ ] [dependencies] -tendermint = { version = "0.39.1", default-features = false, path = "../tendermint" } -tendermint-config = { version = "0.39.1", path = "../config", default-features = false } -tendermint-proto = { version = "0.39.1", path = "../proto", default-features = false } +tendermint = { version = "0.40.0", default-features = false, path = "../tendermint" } +tendermint-config = { version = "0.40.0", path = "../config", default-features = false } +tendermint-proto = { version = "0.40.0", path = "../proto", default-features = false } async-trait = { version = "0.1", default-features = false } bytes = { version = "1.0", default-features = false } @@ -97,7 +97,7 @@ tracing = { version = "0.1", optional = true, default-features = false } tracing-subscriber = { version = "0.3", optional = true, default-features = false, features = ["fmt"] } [dev-dependencies] -tendermint = { version = "0.39.1", default-features = false, path = "../tendermint", features = ["secp256k1"] } +tendermint = { version = "0.40.0", default-features = false, path = "../tendermint", features = ["secp256k1"] } http = { version = "1", default-features = false, features = ["std"] } lazy_static = { version = "1.4.0", default-features = false } tokio-test = { version = "0.4", default-features = false } diff --git a/std-ext/Cargo.toml b/std-ext/Cargo.toml index 53d1538b5..f8cce0d5f 100644 --- a/std-ext/Cargo.toml +++ b/std-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-std-ext" -version = "0.39.1" +version = "0.40.0" edition = "2021" license = "Apache-2.0" homepage = "https://www.tendermint.com/" diff --git a/tendermint/Cargo.toml b/tendermint/Cargo.toml index a4937ba9c..a68269503 100644 --- a/tendermint/Cargo.toml +++ b/tendermint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint" -version = "0.39.1" # Also update depending crates (rpc, light-node, etc..) when bumping this . +version = "0.40.0" # Also update depending crates (rpc, light-node, etc..) when bumping this . license = "Apache-2.0" homepage = "https://www.tendermint.com/" repository = "https://github.com/informalsystems/tendermint-rs/tree/main/tendermint" @@ -43,7 +43,7 @@ serde_repr = { version = "0.1", default-features = false } signature = { version = "2", default-features = false, features = ["alloc"] } subtle = { version = "2", default-features = false } subtle-encoding = { version = "0.5", default-features = false, features = ["bech32-preview"] } -tendermint-proto = { version = "0.39.1", default-features = false, path = "../proto" } +tendermint-proto = { version = "0.40.0", default-features = false, path = "../proto" } time = { version = "0.3", default-features = false, features = ["macros", "parsing"] } zeroize = { version = "1.1", default-features = false, features = ["zeroize_derive", "alloc"] } flex-error = { version = "0.4.4", default-features = false } diff --git a/test/Cargo.toml b/test/Cargo.toml index 6dc9a4a6a..a79b7e45f 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tendermint-test" description = "Tendermint workspace tests and common utilities for testing." -version = "0.39.1" +version = "0.40.0" edition = "2021" license = "Apache-2.0" categories = ["development", "test", "tools"] diff --git a/testgen/Cargo.toml b/testgen/Cargo.toml index e53c90356..f4ff0384f 100644 --- a/testgen/Cargo.toml +++ b/testgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-testgen" -version = "0.39.1" +version = "0.40.0" authors = ["Informal Systems "] edition = "2021" readme = "README.md" @@ -16,7 +16,7 @@ description = """ """ [dependencies] -tendermint = { version = "0.39.1", path = "../tendermint", features = ["clock"] } +tendermint = { version = "0.40.0", path = "../tendermint", features = ["clock"] } serde = { version = "1", default-features = false, features = ["derive"] } serde_json = { version = "1", default-features = false, features = ["std"] } ed25519-consensus = { version = "2", default-features = false } diff --git a/tools/abci-test/Cargo.toml b/tools/abci-test/Cargo.toml index 6a96fd8c1..3f6e8a166 100644 --- a/tools/abci-test/Cargo.toml +++ b/tools/abci-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abci-test" -version = "0.39.1" +version = "0.40.0" authors = ["Informal Systems "] edition = "2021" description = """ @@ -14,9 +14,9 @@ description = """ flex-error = { version = "0.4.4", default-features = false, features = ["std"] } futures = "0.3" structopt = "0.3" -tendermint = { version = "0.39.1", path = "../../tendermint" } -tendermint-config = { version = "0.39.1", path = "../../config" } -tendermint-rpc = { version = "0.39.1", path = "../../rpc", features = [ "websocket-client" ] } +tendermint = { version = "0.40.0", path = "../../tendermint" } +tendermint-config = { version = "0.40.0", path = "../../config" } +tendermint-rpc = { version = "0.40.0", path = "../../rpc", features = [ "websocket-client" ] } tracing = "0.1" tracing-subscriber = "0.2" tokio = { version = "1.20", features = ["full"] } diff --git a/tools/kvstore-test/Cargo.toml b/tools/kvstore-test/Cargo.toml index 86ac43b18..ae8c443b4 100644 --- a/tools/kvstore-test/Cargo.toml +++ b/tools/kvstore-test/Cargo.toml @@ -11,9 +11,9 @@ edition = "2021" [dev-dependencies] futures = "0.3" sha2 = "0.10" -tendermint = { version = "0.39.1", path = "../../tendermint" } -tendermint-light-client = { version = "0.39.1", path = "../../light-client", features = ["unstable"] } -tendermint-rpc = { version = "0.39.1", path = "../../rpc", features = [ "http-client", "websocket-client" ] } +tendermint = { version = "0.40.0", path = "../../tendermint" } +tendermint-light-client = { version = "0.40.0", path = "../../light-client", features = ["unstable"] } +tendermint-rpc = { version = "0.40.0", path = "../../rpc", features = [ "http-client", "websocket-client" ] } tokio = { version = "1.0", features = [ "rt-multi-thread", "macros" ] } tracing = "0.1" tracing-subscriber = "0.3" diff --git a/tools/rpc-probe/Cargo.toml b/tools/rpc-probe/Cargo.toml index 3a1bd0766..7dea6cf36 100644 --- a/tools/rpc-probe/Cargo.toml +++ b/tools/rpc-probe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc-probe" -version = "0.39.1" +version = "0.40.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0"