From e9c41de607626ca1be73bde1280e241f9d51e3cb Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Mon, 28 Nov 2022 08:06:11 -0500 Subject: [PATCH] Release v0.27.0 (#1240) * Bump version to v0.27.0 Signed-off-by: Thane Thomson * Fix clippy nit Signed-off-by: Thane Thomson * Prepare changelog release Signed-off-by: Thane Thomson * Build changelog Signed-off-by: Thane Thomson * Update references from master to main in contributing guidelines Signed-off-by: Thane Thomson * Update CONTRIBUTING.md Co-authored-by: Mikhail Zabaluev * Update release date Signed-off-by: Thane Thomson Signed-off-by: Thane Thomson Co-authored-by: Mikhail Zabaluev --- .../1095-abci-change-bytes-to-hash.md | 0 .../1204-rpc-abci-domain-types.md | 0 .../breaking-changes/1230-query-api.md | 4 ++ .../1234-decouple-rpc-from-proto.md | 0 .../1175-unix-timestamp-conversion.md | 0 .../1222-verify-component-methods.md | 0 .../improvements/1230-query-api.md | 0 .../1234-decouple-rpc-from-proto.md | 0 .changelog/v0.27.0/summary.md | 16 +++++ CHANGELOG.md | 60 +++++++++++++++++++ CONTRIBUTING.md | 10 ++-- abci/Cargo.toml | 4 +- config/Cargo.toml | 4 +- light-client-js/Cargo.toml | 6 +- light-client-verifier/Cargo.toml | 4 +- light-client/Cargo.toml | 8 +-- light-client/src/lib.rs | 2 +- p2p/Cargo.toml | 8 +-- p2p/src/lib.rs | 2 +- pbt-gen/Cargo.toml | 2 +- proto/Cargo.toml | 2 +- proto/src/lib.rs | 2 +- rpc/Cargo.toml | 6 +- std-ext/Cargo.toml | 2 +- tendermint/Cargo.toml | 4 +- tendermint/src/lib.rs | 2 +- test/Cargo.toml | 2 +- testgen/Cargo.toml | 4 +- tools/abci-test/Cargo.toml | 8 +-- tools/kvstore-test/Cargo.toml | 6 +- tools/proto-compiler/src/main.rs | 2 +- tools/rpc-probe/Cargo.toml | 2 +- 32 files changed, 126 insertions(+), 46 deletions(-) rename .changelog/{unreleased => v0.27.0}/breaking-changes/1095-abci-change-bytes-to-hash.md (100%) rename .changelog/{unreleased => v0.27.0}/breaking-changes/1204-rpc-abci-domain-types.md (100%) create mode 100644 .changelog/v0.27.0/breaking-changes/1230-query-api.md rename .changelog/{unreleased => v0.27.0}/breaking-changes/1234-decouple-rpc-from-proto.md (100%) rename .changelog/{unreleased => v0.27.0}/improvements/1175-unix-timestamp-conversion.md (100%) rename .changelog/{unreleased => v0.27.0}/improvements/1222-verify-component-methods.md (100%) rename .changelog/{unreleased => v0.27.0}/improvements/1230-query-api.md (100%) rename .changelog/{unreleased => v0.27.0}/improvements/1234-decouple-rpc-from-proto.md (100%) create mode 100644 .changelog/v0.27.0/summary.md diff --git a/.changelog/unreleased/breaking-changes/1095-abci-change-bytes-to-hash.md b/.changelog/v0.27.0/breaking-changes/1095-abci-change-bytes-to-hash.md similarity index 100% rename from .changelog/unreleased/breaking-changes/1095-abci-change-bytes-to-hash.md rename to .changelog/v0.27.0/breaking-changes/1095-abci-change-bytes-to-hash.md diff --git a/.changelog/unreleased/breaking-changes/1204-rpc-abci-domain-types.md b/.changelog/v0.27.0/breaking-changes/1204-rpc-abci-domain-types.md similarity index 100% rename from .changelog/unreleased/breaking-changes/1204-rpc-abci-domain-types.md rename to .changelog/v0.27.0/breaking-changes/1204-rpc-abci-domain-types.md diff --git a/.changelog/v0.27.0/breaking-changes/1230-query-api.md b/.changelog/v0.27.0/breaking-changes/1230-query-api.md new file mode 100644 index 000000000..973ab4eb2 --- /dev/null +++ b/.changelog/v0.27.0/breaking-changes/1230-query-api.md @@ -0,0 +1,4 @@ +- `[tendermint-rpc]` Extract the `key` field from `query::Condition` and + structure a `query::Condition` to have `key` and `operation` fields, since the + `key` field is common to all conditions + ([#1230](https://github.com/informalsystems/tendermint-rs/issues/1230)) diff --git a/.changelog/unreleased/breaking-changes/1234-decouple-rpc-from-proto.md b/.changelog/v0.27.0/breaking-changes/1234-decouple-rpc-from-proto.md similarity index 100% rename from .changelog/unreleased/breaking-changes/1234-decouple-rpc-from-proto.md rename to .changelog/v0.27.0/breaking-changes/1234-decouple-rpc-from-proto.md diff --git a/.changelog/unreleased/improvements/1175-unix-timestamp-conversion.md b/.changelog/v0.27.0/improvements/1175-unix-timestamp-conversion.md similarity index 100% rename from .changelog/unreleased/improvements/1175-unix-timestamp-conversion.md rename to .changelog/v0.27.0/improvements/1175-unix-timestamp-conversion.md diff --git a/.changelog/unreleased/improvements/1222-verify-component-methods.md b/.changelog/v0.27.0/improvements/1222-verify-component-methods.md similarity index 100% rename from .changelog/unreleased/improvements/1222-verify-component-methods.md rename to .changelog/v0.27.0/improvements/1222-verify-component-methods.md diff --git a/.changelog/unreleased/improvements/1230-query-api.md b/.changelog/v0.27.0/improvements/1230-query-api.md similarity index 100% rename from .changelog/unreleased/improvements/1230-query-api.md rename to .changelog/v0.27.0/improvements/1230-query-api.md diff --git a/.changelog/unreleased/improvements/1234-decouple-rpc-from-proto.md b/.changelog/v0.27.0/improvements/1234-decouple-rpc-from-proto.md similarity index 100% rename from .changelog/unreleased/improvements/1234-decouple-rpc-from-proto.md rename to .changelog/v0.27.0/improvements/1234-decouple-rpc-from-proto.md diff --git a/.changelog/v0.27.0/summary.md b/.changelog/v0.27.0/summary.md new file mode 100644 index 000000000..72dac9f79 --- /dev/null +++ b/.changelog/v0.27.0/summary.md @@ -0,0 +1,16 @@ +*Nov 28, 2022* + +Following on from the ABCI domain type-related work in v0.26.0, this release +deduplicates types across the `tendermint` and `tendermint-rpc` crates, and +makes better use of our domain types across the crates (a big thanks to +@mzabaluev here!). + +@romac helped make the RPC query interface more ergonomic, and @hu55a1n1 +implemented Rust equivalents for Tendermint Go's +[VerifyCommitLight](https://github.com/tendermint/tendermint/blob/a6dd0d270abc3c01f223eedee44d8b285ae273f6/types/validator_set.go#L722) +and +[VerifyCommitLightTrusting](https://github.com/tendermint/tendermint/blob/a6dd0d270abc3c01f223eedee44d8b285ae273f6/types/validator_set.go#L775) +methods for the light client. + +Some additional convenience methods for the `Time` type were provided by +@scalalang2. diff --git a/CHANGELOG.md b/CHANGELOG.md index 6df1ad09c..9e5f7f71d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,65 @@ # CHANGELOG +## v0.27.0 + +*Nov 28, 2022* + +Following on from the ABCI domain type-related work in v0.26.0, this release +deduplicates types across the `tendermint` and `tendermint-rpc` crates, and +makes better use of our domain types across the crates (a big thanks to +@mzabaluev here!). + +@romac helped make the RPC query interface more ergonomic, and @hu55a1n1 +implemented Rust equivalents for Tendermint Go's +[VerifyCommitLight](https://github.com/tendermint/tendermint/blob/a6dd0d270abc3c01f223eedee44d8b285ae273f6/types/validator_set.go#L722) +and +[VerifyCommitLightTrusting](https://github.com/tendermint/tendermint/blob/a6dd0d270abc3c01f223eedee44d8b285ae273f6/types/validator_set.go#L775) +methods for the light client. + +Some additional convenience methods for the `Time` type were provided by +@scalalang2. + +### BREAKING CHANGES + +- `[tendermint]` Change hash fields' type from `Bytes` + ([#1095](https://github.com/informalsystems/tendermint-rs/issues/1095)): + + | Struct | Field | Type | + | ------------------------------ | --------------------- | --------- | + | `abci::request::OfferSnapshot` | `app_hash` | `AppHash` | + | `abci::response::Info` | `last_block_app_hash` | `AppHash` | + | `abci::response::InitChain` | `app_hash` | `AppHash` | + | `Genesis` | `app_hash` | `AppHash` | + +- `[tendermint]` Remove method `AppHash::value`, + replaced with non-allocating `AppHash::as_bytes` + [#1232](https://github.com/informalsystems/tendermint-rs/pull/1232). +- `[tendermint-rpc]` Remove ABCI-related types, change the affected field types + to standard Rust types or ABCI domain types in `[tendermint]`. + ([#1090](https://github.com/informalsystems/tendermint-rs/issues/1090)) +- `[tendermint-rpc]` Extract the `key` field from `query::Condition` and + structure a `query::Condition` to have `key` and `operation` fields, since the + `key` field is common to all conditions + ([#1230](https://github.com/informalsystems/tendermint-rs/issues/1230)) +- `[tendermint]` Rename `merkle::proof::Proof` to `ProofOps` + ([#1234](https://github.com/informalsystems/tendermint-rs/pull/1234)) +- `[tendermint-rpc]` Change the type of `/tx` response field `proof` + to `tendermint::tx::Proof` + ([#1233](https://github.com/informalsystems/tendermint-rs/issues/1233)) + +### IMPROVEMENTS + +- `[tendermint]` Added `Time` methods `unix_timestamp` and `unix_timestamp_nanos`. + ([#1175](https://github.com/informalsystems/tendermint-rs/issues/1175)) +- `[light-client]` Added `validate`, `validate_against_trusted`, `verify_commit` and `verify_commit_against_trusted` methods to `PredicateVerifier`. + ([#1222](https://github.com/informalsystems/tendermint-rs/issues/1222)) +- `[tendermint-rpc]` Make `tendermint_rpc::Query`'s fields + public and add a `Condition::key(&self) -> &str` method + ([#1230](https://github.com/informalsystems/tendermint-rs/issues/1230)) +- `[tendermint]` Add domain types `merkle::Proof` and `tx::Proof`, + to represent protobuf messages `crypto.Proof` and `types.TxProof` respectively + ([#1234](https://github.com/informalsystems/tendermint-rs/pull/1234)) + ## v0.26.0 *Oct 31, 2022* diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 240ebf7dc..75354ce07 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -74,13 +74,13 @@ repo. For instance, to create a fork and work on a branch of it: Now `origin` refers to your fork and `upstream` refers to this version. -`git push -u origin master` to update the fork, and make pull requests against +`git push -u origin main` to update the fork, and make pull requests against this repo. To pull in updates from the origin repo, run - `git fetch upstream` -- `git rebase upstream/master` (or whatever branch you want) +- `git rebase upstream/main` (or whatever branch you want) ## Changelog @@ -138,7 +138,7 @@ core data structures are exposed. Pull requests are squash-merged into one of the following primary development branches: -- `master` - targeting compatibility with the [latest official release of +- `main` - targeting compatibility with the [latest official release of Tendermint](https://github.com/tendermint/tendermint/releases). - tendermint-rs version-specific branches, e.g. `v0.23.x` - targeting patches to older versions of tendermint-rs. @@ -163,7 +163,7 @@ squashed into a single commit for the PR with all the commit messages. When the problem as well as proposed solution are well understood, changes should start with a [draft pull request](https://github.blog/2019-02-14-introducing-draft-pull-requests/) -against master. The draft signals that work is underway. When the work is ready +against `main`. The draft signals that work is underway. When the work is ready for feedback, hitting "Ready for Review" will signal to the maintainers to take a look. Maintainers will not review draft PRs. @@ -192,7 +192,7 @@ Our release process is as follows: 6. Once approved, run the [`release.sh`] script. Fix any problems that may arise during this process and push the changes to the release PR. This step requires the appropriate privileges to push crates to [crates.io]. -7. Once all crates have been successfully released, merge the PR to `master` and +7. Once all crates have been successfully released, merge the PR to `main` and tag the repo at the new version (e.g. `v0.17.0`). [CHANGELOG.md]: https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md diff --git a/abci/Cargo.toml b/abci/Cargo.toml index 25822bd94..da053d71d 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-abci" -version = "0.26.0" +version = "0.27.0" authors = ["Informal Systems "] edition = "2018" 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.26.0", default-features = false, path = "../proto" } +tendermint-proto = { version = "0.27.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 6aa502efc..d162fa30e 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-config" -version = "0.26.0" # Also update `html_root_url` in lib.rs and +version = "0.27.0" # Also update `html_root_url` in lib.rs and # depending crates (rpc, light-node, ..) when bumping this license = "Apache-2.0" homepage = "https://www.tendermint.com/" @@ -25,7 +25,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -tendermint = { version = "0.26.0", default-features = false, path = "../tendermint" } +tendermint = { version = "0.27.0", default-features = false, path = "../tendermint" } flex-error = { version = "0.4.4", default-features = false } serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/light-client-js/Cargo.toml b/light-client-js/Cargo.toml index 17b2005bd..0444d7cad 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.26.0" +version = "0.27.0" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0" @@ -24,8 +24,8 @@ serde = { version = "1.0", default-features = false, features = [ "derive" ] } serde_json = { version = "1.0", default-features = false } # TODO(thane): Remove once https://github.com/rustwasm/wasm-bindgen/issues/2508 is resolved syn = { version = "=1.0.65", default-features = false } -tendermint = { version = "0.26.0", default-features = false, path = "../tendermint" } -tendermint-light-client-verifier = { version = "0.26.0", default-features = false, path = "../light-client-verifier" } +tendermint = { version = "0.27.0", default-features = false, path = "../tendermint" } +tendermint-light-client-verifier = { version = "0.27.0", default-features = false, path = "../light-client-verifier" } wasm-bindgen = { version = "0.2.63", default-features = false, features = [ "serde-serialize" ] } # The `console_error_panic_hook` crate provides better debugging of panics by diff --git a/light-client-verifier/Cargo.toml b/light-client-verifier/Cargo.toml index c041d401f..c6c5027d7 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.26.0" +version = "0.27.0" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -26,7 +26,7 @@ rustdoc-args = ["--cfg", "docsrs"] default = ["flex-error/std", "flex-error/eyre_tracer"] [dependencies] -tendermint = { version = "0.26.0", path = "../tendermint", default-features = false } +tendermint = { version = "0.27.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 514f4b6c0..8d5e18b94 100644 --- a/light-client/Cargo.toml +++ b/light-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-light-client" -version = "0.26.0" +version = "0.27.0" edition = "2018" license = "Apache-2.0" readme = "README.md" @@ -34,9 +34,9 @@ unstable = [] mbt = [] [dependencies] -tendermint = { version = "0.26.0", path = "../tendermint", default-features = false } -tendermint-rpc = { version = "0.26.0", path = "../rpc", default-features = false } -tendermint-light-client-verifier = { version = "0.26.0", path = "../light-client-verifier", default-features = false } +tendermint = { version = "0.27.0", path = "../tendermint", default-features = false } +tendermint-rpc = { version = "0.27.0", path = "../rpc", default-features = false } +tendermint-light-client-verifier = { version = "0.27.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/src/lib.rs b/light-client/src/lib.rs index 6d5f4c96b..2ce4522cc 100644 --- a/light-client/src/lib.rs +++ b/light-client/src/lib.rs @@ -9,7 +9,7 @@ nonstandard_style )] #![doc( - html_root_url = "https://docs.rs/tendermint-light-client/0.26.0", + html_root_url = "https://docs.rs/tendermint-light-client/0.27.0", html_logo_url = "https://raw.githubusercontent.com/informalsystems/tendermint-rs/master/img/logo-tendermint-rs_3961x4001.png" )] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml index 941b6513c..3865c67bc 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-p2p" -version = "0.26.0" +version = "0.27.0" edition = "2018" 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.26.0", default-features = false } -tendermint-proto = { path = "../proto", version = "0.26.0", default-features = false } -tendermint-std-ext = { path = "../std-ext", version = "0.26.0", default-features = false } +tendermint = { path = "../tendermint", version = "0.27.0", default-features = false } +tendermint-proto = { path = "../proto", version = "0.27.0", default-features = false } +tendermint-std-ext = { path = "../std-ext", version = "0.27.0", default-features = false } # optional dependencies prost-derive = { version = "0.11", optional = true } diff --git a/p2p/src/lib.rs b/p2p/src/lib.rs index acb70769c..2e96a0d1a 100644 --- a/p2p/src/lib.rs +++ b/p2p/src/lib.rs @@ -20,7 +20,7 @@ unused_qualifications )] #![doc( - html_root_url = "https://docs.rs/tendermint-p2p/0.26.0", + html_root_url = "https://docs.rs/tendermint-p2p/0.27.0", html_logo_url = "https://raw.githubusercontent.com/informalsystems/tendermint-rs/master/img/logo-tendermint-rs_3961x4001.png" )] diff --git a/pbt-gen/Cargo.toml b/pbt-gen/Cargo.toml index 52a759d83..7be7cc317 100644 --- a/pbt-gen/Cargo.toml +++ b/pbt-gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-pbt-gen" -version = "0.26.0" +version = "0.27.0" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0" diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 49e58aba0..72eaefac1 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-proto" -version = "0.26.0" +version = "0.27.0" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0" diff --git a/proto/src/lib.rs b/proto/src/lib.rs index c9b963cf3..03e2676d2 100644 --- a/proto/src/lib.rs +++ b/proto/src/lib.rs @@ -4,7 +4,7 @@ #![deny(warnings, trivial_casts, trivial_numeric_casts, unused_import_braces)] #![allow(clippy::large_enum_variant)] #![forbid(unsafe_code)] -#![doc(html_root_url = "https://docs.rs/tendermint-proto/0.26.0")] +#![doc(html_root_url = "https://docs.rs/tendermint-proto/0.27.0")] extern crate alloc; diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 9af4ffb0e..03d5e6f41 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc" -version = "0.26.0" +version = "0.27.0" edition = "2018" license = "Apache-2.0" homepage = "https://www.tendermint.com/" @@ -69,8 +69,8 @@ pin-project = { version = "1.0.1", default-features = false } serde = { version = "1", default-features = false, features = [ "derive" ] } serde_bytes = { version = "0.11", default-features = false } serde_json = { version = "1", default-features = false, features = ["std"] } -tendermint-config = { version = "0.26.0", path = "../config", default-features = false } -tendermint = { version = "0.26.0", default-features = false, path = "../tendermint" } +tendermint-config = { version = "0.27.0", path = "../config", default-features = false } +tendermint = { version = "0.27.0", default-features = false, path = "../tendermint" } thiserror = { version = "1", default-features = false } time = { version = "0.3", default-features = false, features = ["macros", "parsing"] } uuid = { version = "0.8", default-features = false } diff --git a/std-ext/Cargo.toml b/std-ext/Cargo.toml index dda2f201a..3c8a15a87 100644 --- a/std-ext/Cargo.toml +++ b/std-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-std-ext" -version = "0.26.0" +version = "0.27.0" edition = "2018" license = "Apache-2.0" homepage = "https://www.tendermint.com/" diff --git a/tendermint/Cargo.toml b/tendermint/Cargo.toml index da5ba31f2..941eb4d08 100644 --- a/tendermint/Cargo.toml +++ b/tendermint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint" -version = "0.26.0" # Also update `html_root_url` in lib.rs and +version = "0.27.0" # Also update `html_root_url` in lib.rs and # depending crates (rpc, light-node, ..) when bumping this license = "Apache-2.0" homepage = "https://www.tendermint.com/" @@ -46,7 +46,7 @@ sha2 = { version = "0.9", default-features = false } signature = { version = "1", default-features = false } subtle = { version = "2", default-features = false } subtle-encoding = { version = "0.5", default-features = false, features = ["bech32-preview"] } -tendermint-proto = { version = "0.26.0", default-features = false, path = "../proto" } +tendermint-proto = { version = "0.27.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/tendermint/src/lib.rs b/tendermint/src/lib.rs index 74a554014..7b02e2d03 100644 --- a/tendermint/src/lib.rs +++ b/tendermint/src/lib.rs @@ -15,7 +15,7 @@ )] #![forbid(unsafe_code)] #![doc( - html_root_url = "https://docs.rs/tendermint/0.26.0", + html_root_url = "https://docs.rs/tendermint/0.27.0", html_logo_url = "https://raw.githubusercontent.com/informalsystems/tendermint-rs/master/img/logo-tendermint-rs_3961x4001.png" )] diff --git a/test/Cargo.toml b/test/Cargo.toml index aef835af5..7facd8229 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.26.0" +version = "0.27.0" edition = "2018" license = "Apache-2.0" categories = ["development", "test", "tools"] diff --git a/testgen/Cargo.toml b/testgen/Cargo.toml index ea37123c2..b1ef491ad 100644 --- a/testgen/Cargo.toml +++ b/testgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-testgen" -version = "0.26.0" +version = "0.27.0" authors = ["Informal Systems "] edition = "2018" readme = "README.md" @@ -16,7 +16,7 @@ description = """ """ [dependencies] -tendermint = { version = "0.26.0", path = "../tendermint", features = ["clock"] } +tendermint = { version = "0.27.0", path = "../tendermint", features = ["clock"] } serde = { version = "1", default-features = false, features = ["derive"] } serde_json = { version = "1", default-features = false, features = ["std"] } ed25519-dalek = { version = "1", default-features = false } diff --git a/tools/abci-test/Cargo.toml b/tools/abci-test/Cargo.toml index f422b3bec..81c0c4397 100644 --- a/tools/abci-test/Cargo.toml +++ b/tools/abci-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abci-test" -version = "0.26.0" +version = "0.27.0" authors = ["Informal Systems "] edition = "2018" 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.26.0", path = "../../tendermint" } -tendermint-config = { version = "0.26.0", path = "../../config" } -tendermint-rpc = { version = "0.26.0", path = "../../rpc", features = [ "websocket-client" ] } +tendermint = { version = "0.27.0", path = "../../tendermint" } +tendermint-config = { version = "0.27.0", path = "../../config" } +tendermint-rpc = { version = "0.27.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 4129dfcb9..0ccbe5f50 100644 --- a/tools/kvstore-test/Cargo.toml +++ b/tools/kvstore-test/Cargo.toml @@ -10,9 +10,9 @@ edition = "2018" [dev-dependencies] futures = "0.3" -tendermint = { version = "0.26.0", path = "../../tendermint" } -tendermint-light-client = { version = "0.26.0", path = "../../light-client", features = ["unstable"] } -tendermint-rpc = { version = "0.26.0", path = "../../rpc", features = [ "http-client", "websocket-client" ] } +tendermint = { version = "0.27.0", path = "../../tendermint" } +tendermint-light-client = { version = "0.27.0", path = "../../light-client", features = ["unstable"] } +tendermint-rpc = { version = "0.27.0", path = "../../rpc", features = [ "http-client", "websocket-client" ] } tokio = { version = "1.0", features = [ "rt-multi-thread", "macros" ] } tracing = "0.1" tracing-subscriber = "0.2" diff --git a/tools/proto-compiler/src/main.rs b/tools/proto-compiler/src/main.rs index ea65b32bf..886072c89 100644 --- a/tools/proto-compiler/src/main.rs +++ b/tools/proto-compiler/src/main.rs @@ -58,7 +58,7 @@ fn main() { let mut pb = prost_build::Config::new(); // Use shared Bytes buffers for ABCI messages: - pb.bytes(&[".tendermint.abci"]); + pb.bytes([".tendermint.abci"]); // Compile proto files with added annotations, exchange prost_types to our own pb.out_dir(&out_dir); diff --git a/tools/rpc-probe/Cargo.toml b/tools/rpc-probe/Cargo.toml index 7d6528e17..42eabded9 100644 --- a/tools/rpc-probe/Cargo.toml +++ b/tools/rpc-probe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc-probe" -version = "0.26.0" +version = "0.27.0" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0"