diff --git a/.changelog/v0.29.0/summary.md b/.changelog/v0.29.0/summary.md index a4a2af7ce..06969d788 100644 --- a/.changelog/v0.29.0/summary.md +++ b/.changelog/v0.29.0/summary.md @@ -1,3 +1,3 @@ -*Feb 17, 2023* +*Feb 17th, 2023* This release features modularity improvements for the cryptographic routines, as well as fixes related to block verification and the use of a consensus-friendly ed25519 crate. diff --git a/.changelog/v0.29.1/summary.md b/.changelog/v0.29.1/summary.md index e7bd0113e..a31f6822f 100644 --- a/.changelog/v0.29.1/summary.md +++ b/.changelog/v0.29.1/summary.md @@ -1 +1,3 @@ +*February 27th, 2023* + Improve debug output for Ed25519 keys. diff --git a/.changelog/v0.30.0/summary.md b/.changelog/v0.30.0/summary.md index cb4516d3c..b4392342c 100644 --- a/.changelog/v0.30.0/summary.md +++ b/.changelog/v0.30.0/summary.md @@ -1,3 +1,5 @@ +*March 7th, 2023* + This release introduces support for multiple versions of CometBFT protocols. Consumers of tendermint-rs crates, with the exception of `tendermint-abci`, should be able to interoperate with CometBFT nodes based on 0.34.x and diff --git a/.changelog/v0.31.0/summary.md b/.changelog/v0.31.0/summary.md index acc860785..c549fa7c7 100644 --- a/.changelog/v0.31.0/summary.md +++ b/.changelog/v0.31.0/summary.md @@ -1 +1,3 @@ +*April 16th, 2023* + Upgrade signature crate versions and add a `TypedEvent` trait for ABCI events. diff --git a/.changelog/v0.31.1/summary.md b/.changelog/v0.31.1/summary.md index 3f13076e6..815f73d70 100644 --- a/.changelog/v0.31.1/summary.md +++ b/.changelog/v0.31.1/summary.md @@ -1 +1,3 @@ +*April 17th, 2023* + Expose the `TypedEvent` marker trait. diff --git a/.changelog/unreleased/breaking-changes/1294-verify-update-header.md b/.changelog/v0.32.0/breaking-changes/1294-verify-update-header.md similarity index 100% rename from .changelog/unreleased/breaking-changes/1294-verify-update-header.md rename to .changelog/v0.32.0/breaking-changes/1294-verify-update-header.md diff --git a/.changelog/unreleased/features/1291-light-client-detector.md b/.changelog/v0.32.0/features/1291-light-client-detector.md similarity index 100% rename from .changelog/unreleased/features/1291-light-client-detector.md rename to .changelog/v0.32.0/features/1291-light-client-detector.md diff --git a/.changelog/unreleased/features/1294-verify-misbehavior-header.md b/.changelog/v0.32.0/features/1294-verify-misbehavior-header.md similarity index 100% rename from .changelog/unreleased/features/1294-verify-misbehavior-header.md rename to .changelog/v0.32.0/features/1294-verify-misbehavior-header.md diff --git a/.changelog/unreleased/improvements/1235-export-client-trait.md b/.changelog/v0.32.0/improvements/1235-export-client-trait.md similarity index 100% rename from .changelog/unreleased/improvements/1235-export-client-trait.md rename to .changelog/v0.32.0/improvements/1235-export-client-trait.md diff --git a/.changelog/unreleased/improvements/1310-loosen-merkle-tree-bounds.md b/.changelog/v0.32.0/improvements/1310-loosen-merkle-tree-bounds.md similarity index 100% rename from .changelog/unreleased/improvements/1310-loosen-merkle-tree-bounds.md rename to .changelog/v0.32.0/improvements/1310-loosen-merkle-tree-bounds.md diff --git a/.changelog/v0.32.0/summary.md b/.changelog/v0.32.0/summary.md new file mode 100644 index 000000000..5cbf252b8 --- /dev/null +++ b/.changelog/v0.32.0/summary.md @@ -0,0 +1,16 @@ +*May 3rd, 2023* + +This release notably comes with a fully featured [light client attack detector][attack-detector], +and introduces a [CLI for the light client][light-client-cli] for verifying headers, +detecting attacks against the light client, and reporting the evidence to primary and witness nodes. + +It also adds a [`Verifier::verify_misbehaviour_header`][verifier-method] method for verifying +headers coming from a misbehaviour evidence. + +Moreover, the [`Client`][client-trait] trait is now exposed by the `tendermint-rpc` without requiring +the `http-client` or the `websocket-client` feature flags to be enabled. + +[light-client-cli]: https://github.com/informalsystems/tendermint-rs/tree/main/light-client-cli +[attack-detector]: https://github.com/informalsystems/tendermint-rs/tree/main/light-client-detector +[verifier-method]: https://github.com/informalsystems/tendermint-rs/blob/6a4cd245b6f362832b974104b40be973dd0ef108/light-client-verifier/src/verifier.rs#L67 +[client-trait]: https://github.com/informalsystems/tendermint-rs/blob/6a4cd245b6f362832b974104b40be973dd0ef108/rpc/src/client.rs#L49 diff --git a/CHANGELOG.md b/CHANGELOG.md index 963c8583a..6e0e342b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,54 @@ # CHANGELOG +## v0.32.0 + +*May 3rd, 2023* + +This release notably comes with a fully featured [light client attack detector][attack-detector], +and introduces a [CLI for the light client][light-client-cli] for verifying headers, +detecting attacks against the light client, and reporting the evidence to primary and witness nodes. + +It also adds a [`Verifier::verify_misbehaviour_header`][verifier-method] method for verifying +headers coming from a misbehaviour evidence. + +Moreover, the [`Client`][client-trait] trait is now exposed by the `tendermint-rpc` without requiring +the `http-client` or the `websocket-client` feature flags to be enabled. + +[light-client-cli]: https://github.com/informalsystems/tendermint-rs/tree/main/light-client-cli +[attack-detector]: https://github.com/informalsystems/tendermint-rs/tree/main/light-client-detector +[verifier-method]: https://github.com/informalsystems/tendermint-rs/blob/6a4cd245b6f362832b974104b40be973dd0ef108/light-client-verifier/src/verifier.rs#L67 +[client-trait]: https://github.com/informalsystems/tendermint-rs/blob/6a4cd245b6f362832b974104b40be973dd0ef108/rpc/src/client.rs#L49 + +### BREAKING CHANGES + +- [`tendermint-light-client-verifier`] Rename `Verifier::verify` + to `Verifier::verify_update_header` to better describe + its purpose versus `Verifier::verify_misbehaviour_header` + ([\#1294](https://github.com/informalsystems/tendermint-rs/issues/1294)) + +### FEATURES + +- [`tendermint-light-client-detector`] Implement a light client + attack detector, based on its Go version found in Comet + ([\#1291](https://github.com/informalsystems/tendermint-rs/issues/1291)) +- [`tendermint-light-client-verifier`] Add `Verifier::verify_misbehaviour_header` + for verifying headers coming from a misbehaviour evidence. + The verification for these headers is a bit more relaxed in order to catch FLA attacks. + In particular the "header in the future" check for the header should be skipped. + ([\#1294](https://github.com/informalsystems/tendermint-rs/issues/1294)) + +### IMPROVEMENTS + +- [`tendermint-rpc`]: Export `Client` trait unconditionally, without + having to specify either the `http-client` or `websocket-client` + ([\#1235](https://github.com/informalsystems/tendermint-rs/issues/1235)) +- [`tendermint`]: Loosen bounds of merkle hashing functions to accept borrowed data. + ([\#1310](https://github.com/informalsystems/tendermint-rs/issues/1310)) + ## v0.31.1 +*April 17th, 2023* + Expose the `TypedEvent` marker trait. ### FEATURES @@ -11,6 +58,8 @@ Expose the `TypedEvent` marker trait. ## v0.31.0 +*April 16th, 2023* + Upgrade signature crate versions and add a `TypedEvent` trait for ABCI events. ### BREAKING CHANGES @@ -27,6 +76,8 @@ Upgrade signature crate versions and add a `TypedEvent` trait for ABCI events. ## v0.30.0 +*March 7th, 2023* + This release introduces support for multiple versions of CometBFT protocols. Consumers of tendermint-rs crates, with the exception of `tendermint-abci`, should be able to interoperate with CometBFT nodes based on 0.34.x and @@ -77,7 +128,7 @@ should be able to interoperate with CometBFT nodes based on 0.34.x and - [`tendermint-abci`] Port ABCI application support to 0.37 Tendermint Core API. No legacy support for 0.34 is provided at the moment. ([#1193](https://github.com/informalsystems/tendermint-rs/pull/1193)). -- [`tendermint`] Derive `Hash` on `tendermint::Time` +- Derive `Hash` on `tendermint::Time` ([#1278](https://github.com/informalsystems/tendermint-rs/issues/1278)) - [`tendermint-light-client`] Show `max_clock_drift` in error raised when header is from the future @@ -85,6 +136,8 @@ should be able to interoperate with CometBFT nodes based on 0.34.x and ## v0.29.1 +*February 27th, 2023* + Improve debug output for Ed25519 keys. ### BUG FIXES @@ -94,7 +147,7 @@ Improve debug output for Ed25519 keys. ## v0.29.0 -*Feb 17, 2023* +*Feb 17th, 2023* This release features modularity improvements for the cryptographic routines, as well as fixes related to block verification and the use of a consensus-friendly ed25519 crate. @@ -553,18 +606,18 @@ not yet support `no_std`. - Upgraded Prost to the official v0.9 release to finally resolve the security issue introduced by v0.7 ([#925](https://github.com/informalsystems/tendermint-rs/issues/925)) -- `[tendermint, tendermint-config]` The `tendermint::config` - module has now been broken out into its own crate (`tendermint- - config`) to help towards facilitating `no_std` compatibility - ([#983](https://github.com/informalsystems/tendermint-rs/issues/983)) -- `[tendermint]` The `tendermint::node::info::OtherInfo::rpc_address` - field type has been changed from `tendermint::net::Address` - to `String` toward facilitating `no_std` compatibility - ([#983](https://github.com/informalsystems/tendermint-rs/issues/983)) - `[tendermint]` The `tendermint::node::info::ListenAddress::to_net_address` method was replaced with a simple `as_str` method toward facilitating `no_std` compatibility ([#983](https://github.com/informalsystems/tendermint- rs/issues/983)) +- `[tendermint]` The `tendermint::node::info::OtherInfo::rpc_address` + field type has been changed from `tendermint::net::Address` + to `String` toward facilitating `no_std` compatibility + ([#983](https://github.com/informalsystems/tendermint-rs/issues/983)) +- `[tendermint, tendermint-config]` The `tendermint::config` + module has now been broken out into its own crate (`tendermint- + config`) to help towards facilitating `no_std` compatibility + ([#983](https://github.com/informalsystems/tendermint-rs/issues/983)) ### FEATURES diff --git a/README.md b/README.md index 861f6e8d2..b9db47fb0 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,15 @@ Libraries: - [tendermint-abci](./abci) - A lightweight, low-level framework for building Tendermint ABCI applications in Rust - [tendermint-light-client](./light-client) - Tendermint light client library - for verifying signed headers, tracking validator set changes, and detecting - forks + for verifying signed headers and tracking validator set changes +- [tendermint-light-client-detector](./light-client-detector) - Library for + detecting and reporting attacks against the Tendermint light client +- [tendermint-light-client-cli](./light-client-cli) - CLI for the light client, + for verifying headers, detecting attacks and reporting them. - [tendermint-light-client-js](./light-client-js) - Low-level WASM interface for interacting with the Tendermint light client verification functionality - [tendermint-p2p](./p2p) - At present this primarily provides the ability to - connect to Tendermint nodes via Tendermint's [secret - connection](tendermint-secret-conn). + connect to Tendermint nodes via Tendermint's [secret connection](tendermint-secret-conn) - [tendermint-proto](./proto) - Protobuf data structures (generated using Prost) for wire-level interaction with Tendermint - [tendermint-rpc](./rpc) - Tendermint RPC client and response types @@ -82,7 +84,7 @@ Papers ## License -Copyright © 2020-2022 Informal Systems +Copyright © 2020 Informal Systems and contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use the files in this repository except in compliance with the License. diff --git a/abci/Cargo.toml b/abci/Cargo.toml index 885c7ef4f..e4cdb69cf 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-abci" -version = "0.31.1" +version = "0.32.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.11", default-features = false } -tendermint-proto = { version = "0.31.1", default-features = false, path = "../proto" } +tendermint-proto = { version = "0.32.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 4bcbfff4d..72ae4c785 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-config" -version = "0.31.1" # Also update depending crates (rpc, light-node, ..) when bumping this. +version = "0.32.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.31.1", default-features = false, features = ["rust-crypto"], path = "../tendermint" } +tendermint = { version = "0.32.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 bebe53d52..8ee946421 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.31.1" +version = "0.32.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.31.1", path = "../tendermint" } -tendermint-rpc = { version = "0.31.1", path = "../rpc", features = ["http-client"] } -tendermint-light-client = { version = "0.31.1", path = "../light-client" } -tendermint-light-client-detector = { version = "0.31.1", path = "../light-client-detector" } +tendermint = { version = "0.32.0", path = "../tendermint" } +tendermint-rpc = { version = "0.32.0", path = "../rpc", features = ["http-client"] } +tendermint-light-client = { version = "0.32.0", path = "../light-client" } +tendermint-light-client-detector = { version = "0.32.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 43821a6ec..da31a20b7 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.31.1" +version = "0.32.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.31.1", path = "../tendermint" } -tendermint-rpc = { version = "0.31.1", path = "../rpc", features = ["http-client"] } -tendermint-proto = { version = "0.31.1", path = "../proto" } -tendermint-light-client = { version = "0.31.1", path = "../light-client" } +tendermint = { version = "0.32.0", path = "../tendermint" } +tendermint-rpc = { version = "0.32.0", path = "../rpc", features = ["http-client"] } +tendermint-proto = { version = "0.32.0", path = "../proto" } +tendermint-light-client = { version = "0.32.0", path = "../light-client" } contracts = { version = "0.6.2", default-features = false } crossbeam-channel = { version = "0.4.2", default-features = false } diff --git a/light-client-detector/README.md b/light-client-detector/README.md new file mode 100644 index 000000000..9578bffc2 --- /dev/null +++ b/light-client-detector/README.md @@ -0,0 +1,29 @@ +[![Crate][crate-image]][crate-link] +[![Docs][docs-image]][docs-link] + +See the [repo root] for build status, license, rust version, etc. + +# Light Client Attack Detector + +Implementation of the [Light Client Detection][light-client-detection]. + +## Documentation + +See documentation on [docs.rs][docs-link]. + +## Testing + +The Tendermint Light Client Attack Detector is currently primarily tested via the [Hermes][hermes] integration test suite + +[//]: # (badges) + +[crate-image]: https://img.shields.io/crates/v/tendermint-light-client-detector.svg +[crate-link]: https://crates.io/crates/tendermint-light-client-detector +[docs-image]: https://docs.rs/tendermint-light-client-detector/badge.svg +[docs-link]: https://docs.rs/tendermint-light-client-detector/ + +[//]: # (general links) + +[repo root]: https://github.com/informalsystems/tendermint-rs +[Tendermint]: https://github.com/tendermint/tendermint +[light-client-detection]: https://github.com/informalsystems/tendermint-rs/tree/main/docs/spec/lightclient/detection diff --git a/light-client-js/Cargo.toml b/light-client-js/Cargo.toml index 2f23ace95..96e0664e5 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.31.1" +version = "0.32.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.31.1", default-features = false, path = "../tendermint" } -tendermint-light-client-verifier = { version = "0.31.1", features = ["rust-crypto"], default-features = false, path = "../light-client-verifier" } +tendermint = { version = "0.32.0", default-features = false, path = "../tendermint" } +tendermint-light-client-verifier = { version = "0.32.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 e668efb8b..fadf29f25 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.31.1" +version = "0.32.0" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -27,7 +27,7 @@ default = ["rust-crypto", "flex-error/std", "flex-error/eyre_tracer"] rust-crypto = ["tendermint/rust-crypto"] [dependencies] -tendermint = { version = "0.31.1", path = "../tendermint", default-features = false } +tendermint = { version = "0.32.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 96dab902a..6b354774f 100644 --- a/light-client/Cargo.toml +++ b/light-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-light-client" -version = "0.31.1" +version = "0.32.0" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -35,9 +35,9 @@ unstable = ["rust-crypto"] mbt = ["rust-crypto"] [dependencies] -tendermint = { version = "0.31.1", path = "../tendermint", default-features = false } -tendermint-rpc = { version = "0.31.1", path = "../rpc", default-features = false } -tendermint-light-client-verifier = { version = "0.31.1", path = "../light-client-verifier", default-features = false } +tendermint = { version = "0.32.0", path = "../tendermint", default-features = false } +tendermint-rpc = { version = "0.32.0", path = "../rpc", default-features = false } +tendermint-light-client-verifier = { version = "0.32.0", path = "../light-client-verifier", default-features = false } contracts = { version = "0.6.2", default-features = false } crossbeam-channel = { version = "0.4.2", default-features = false } diff --git a/light-client/README.md b/light-client/README.md index 0658993d8..f625ec1f7 100644 --- a/light-client/README.md +++ b/light-client/README.md @@ -6,11 +6,11 @@ See the [repo root] for build status, license, rust version, etc. # Light-Client Implementation of the [Light Client Verification][light-client-verification] -and [Fork Detection][light-client-detection] protocols. +and [Attack Detection][light-client-detection] protocols. ## Documentation -See documentation on [crates.io][docs-link]. +See documentation on [docs.rs][docs-link]. ## Testing @@ -63,21 +63,9 @@ To run the tests: $ cargo test -p tendermint-light-client --test light_client bisection ``` -### Fork Detection +### Attack Detection -Similarly to the bisection algorithm, the fork detection algorithm is tested via a set -of [JSON fixtures](./tests/support/bisection/single_peer) which encode an initial trusted -state, a target block to verify, a set of intermediary blocks, and the expected result -of the fork detection algorithm. - -These tests target the [`supervisor`](./src/supervisor.rs) module, -and can be found in the [`tests/supervisor.rs`](./tests/supervisor.rs) file. - -To run the tests: - -```bash -$ cargo test -p tendermint-light-client --test supervisor -``` +Please see the [`light-client-detector` crate][detector-crate]. ### Voting Power Calculator @@ -135,4 +123,4 @@ $ cargo test -p tendermint-light-client --all-features [quick start]: https://github.com/tendermint/tendermint/blob/main/docs/introduction/quick-start.md [Tendermint]: https://github.com/tendermint/tendermint [light-client-verification]: https://github.com/informalsystems/tendermint-rs/blob/main/docs/spec/lightclient/verification/verification.md -[light-client-detection]: https://github.com/informalsystems/tendermint-rs/tree/main/docs/spec/lightclient/detection +[detector-crate]: https://github.com/informalsystems/tendermint-rs/tree/main/light-client-detector diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml index 4d1a7e4e2..6696932ac 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-p2p" -version = "0.31.1" +version = "0.32.0" edition = "2021" license = "Apache-2.0" repository = "https://github.com/informalsystems/tendermint-rs" @@ -44,9 +44,9 @@ aead = { version = "0.4.1", default-features = false } flex-error = { version = "0.4.4", default-features = false } # path dependencies -tendermint = { path = "../tendermint", version = "0.31.1", default-features = false } -tendermint-proto = { path = "../proto", version = "0.31.1", default-features = false } -tendermint-std-ext = { path = "../std-ext", version = "0.31.1", default-features = false } +tendermint = { path = "../tendermint", version = "0.32.0", default-features = false } +tendermint-proto = { path = "../proto", version = "0.32.0", default-features = false } +tendermint-std-ext = { path = "../std-ext", version = "0.32.0", default-features = false } # optional dependencies prost-derive = { version = "0.11", optional = true } diff --git a/pbt-gen/Cargo.toml b/pbt-gen/Cargo.toml index f7fb7d80f..f44f27211 100644 --- a/pbt-gen/Cargo.toml +++ b/pbt-gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-pbt-gen" -version = "0.31.1" +version = "0.32.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 8df0e0044..f0c0847b7 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-proto" -version = "0.31.1" +version = "0.32.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 9584e124e..7d0150fdd 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc" -version = "0.31.1" +version = "0.32.0" edition = "2021" license = "Apache-2.0" homepage = "https://www.tendermint.com/" @@ -60,9 +60,9 @@ websocket-client = [ ] [dependencies] -tendermint = { version = "0.31.1", default-features = false, path = "../tendermint" } -tendermint-config = { version = "0.31.1", path = "../config", default-features = false } -tendermint-proto = { version = "0.31.1", path = "../proto", default-features = false } +tendermint = { version = "0.32.0", default-features = false, path = "../tendermint" } +tendermint-config = { version = "0.32.0", path = "../config", default-features = false } +tendermint-proto = { version = "0.32.0", path = "../proto", default-features = false } async-trait = { version = "0.1", default-features = false } bytes = { version = "1.0", default-features = false } diff --git a/std-ext/Cargo.toml b/std-ext/Cargo.toml index 057020ddc..bfb598060 100644 --- a/std-ext/Cargo.toml +++ b/std-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-std-ext" -version = "0.31.1" +version = "0.32.0" edition = "2021" license = "Apache-2.0" homepage = "https://www.tendermint.com/" diff --git a/tendermint/Cargo.toml b/tendermint/Cargo.toml index 75309bf5e..97db45d69 100644 --- a/tendermint/Cargo.toml +++ b/tendermint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint" -version = "0.31.1" # Also update depending crates (rpc, light-node, etc..) when bumping this . +version = "0.32.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" @@ -44,7 +44,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.31.1", default-features = false, path = "../proto" } +tendermint-proto = { version = "0.32.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 369434860..664830c5f 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.31.1" +version = "0.32.0" edition = "2021" license = "Apache-2.0" categories = ["development", "test", "tools"] diff --git a/testgen/Cargo.toml b/testgen/Cargo.toml index 189c3ff94..2d9a4af2a 100644 --- a/testgen/Cargo.toml +++ b/testgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-testgen" -version = "0.31.1" +version = "0.32.0" authors = ["Informal Systems "] edition = "2021" readme = "README.md" @@ -16,7 +16,7 @@ description = """ """ [dependencies] -tendermint = { version = "0.31.1", path = "../tendermint", features = ["clock"] } +tendermint = { version = "0.32.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 66b4923c7..8ed216ab4 100644 --- a/tools/abci-test/Cargo.toml +++ b/tools/abci-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abci-test" -version = "0.31.1" +version = "0.32.0" authors = ["Informal Systems "] edition = "2021" description = """ @@ -14,9 +14,9 @@ description = """ flex-error = { version = "0.4.4", default-features = false, features = ["std", "eyre_tracer"] } futures = "0.3" structopt = "0.3" -tendermint = { version = "0.31.1", path = "../../tendermint" } -tendermint-config = { version = "0.31.1", path = "../../config" } -tendermint-rpc = { version = "0.31.1", path = "../../rpc", features = [ "websocket-client" ] } +tendermint = { version = "0.32.0", path = "../../tendermint" } +tendermint-config = { version = "0.32.0", path = "../../config" } +tendermint-rpc = { version = "0.32.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 ee1b566ad..e92cbca0b 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.31.1", path = "../../tendermint" } -tendermint-light-client = { version = "0.31.1", path = "../../light-client", features = ["unstable"] } -tendermint-rpc = { version = "0.31.1", path = "../../rpc", features = [ "http-client", "websocket-client" ] } +tendermint = { version = "0.32.0", path = "../../tendermint" } +tendermint-light-client = { version = "0.32.0", path = "../../light-client", features = ["unstable"] } +tendermint-rpc = { version = "0.32.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 3faed4f36..5f446d19e 100644 --- a/tools/rpc-probe/Cargo.toml +++ b/tools/rpc-probe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc-probe" -version = "0.31.1" +version = "0.32.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0"