From ebde4a2c967a756a62025a0f71d71906ec8212b1 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Thu, 5 May 2022 08:15:17 -0400 Subject: [PATCH] Release v0.24.0 pre.2 (#1124) * Fix changelog organization Signed-off-by: Thane Thomson * Bump version to v0.24.0-pre.2 Signed-off-by: Thane Thomson * Build changelog for release Signed-off-by: Thane Thomson --- .../light-client/953-async-light-client.md | 2 - .../1064-infallible-encode_vec.md | 0 .../breaking-changes/1084-rpc-probe-gaia.md | 0 .../953-async-light-client.md | 2 + .../dependencies/1097-contracts-dep.md | 0 .../dependencies/1113-prost-0.10.md | 0 .../features/1105-chain-id-constants.md | 0 .../features/832-block-by-hash.md | 0 .changelog/v0.24.0-pre.2/summary.md | 4 ++ .../workarounds/1021-rpc-block_results.md | 0 CHANGELOG.md | 38 +++++++++++++++++++ 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 | 8 ++-- 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 | 8 ++-- tools/rpc-probe/Cargo.toml | 2 +- 31 files changed, 86 insertions(+), 44 deletions(-) delete mode 100644 .changelog/unreleased/breaking-changes/light-client/953-async-light-client.md rename .changelog/{unreleased => v0.24.0-pre.2}/breaking-changes/1064-infallible-encode_vec.md (100%) rename .changelog/{unreleased => v0.24.0-pre.2}/breaking-changes/1084-rpc-probe-gaia.md (100%) create mode 100644 .changelog/v0.24.0-pre.2/breaking-changes/953-async-light-client.md rename .changelog/{unreleased => v0.24.0-pre.2}/dependencies/1097-contracts-dep.md (100%) rename .changelog/{unreleased => v0.24.0-pre.2}/dependencies/1113-prost-0.10.md (100%) rename .changelog/{unreleased => v0.24.0-pre.2}/features/1105-chain-id-constants.md (100%) rename .changelog/{unreleased => v0.24.0-pre.2}/features/832-block-by-hash.md (100%) create mode 100644 .changelog/v0.24.0-pre.2/summary.md rename .changelog/{unreleased => v0.24.0-pre.2}/workarounds/1021-rpc-block_results.md (100%) diff --git a/.changelog/unreleased/breaking-changes/light-client/953-async-light-client.md b/.changelog/unreleased/breaking-changes/light-client/953-async-light-client.md deleted file mode 100644 index fde5d68fb..000000000 --- a/.changelog/unreleased/breaking-changes/light-client/953-async-light-client.md +++ /dev/null @@ -1,2 +0,0 @@ -- Replace Io with async variant - ([#953](https://github.com/informalsystems/tendermint-rs/issues/953)) \ No newline at end of file diff --git a/.changelog/unreleased/breaking-changes/1064-infallible-encode_vec.md b/.changelog/v0.24.0-pre.2/breaking-changes/1064-infallible-encode_vec.md similarity index 100% rename from .changelog/unreleased/breaking-changes/1064-infallible-encode_vec.md rename to .changelog/v0.24.0-pre.2/breaking-changes/1064-infallible-encode_vec.md diff --git a/.changelog/unreleased/breaking-changes/1084-rpc-probe-gaia.md b/.changelog/v0.24.0-pre.2/breaking-changes/1084-rpc-probe-gaia.md similarity index 100% rename from .changelog/unreleased/breaking-changes/1084-rpc-probe-gaia.md rename to .changelog/v0.24.0-pre.2/breaking-changes/1084-rpc-probe-gaia.md diff --git a/.changelog/v0.24.0-pre.2/breaking-changes/953-async-light-client.md b/.changelog/v0.24.0-pre.2/breaking-changes/953-async-light-client.md new file mode 100644 index 000000000..4bbd1d357 --- /dev/null +++ b/.changelog/v0.24.0-pre.2/breaking-changes/953-async-light-client.md @@ -0,0 +1,2 @@ +- `[tendermint-light-client]` Replace Io with async variant + ([#953](https://github.com/informalsystems/tendermint-rs/issues/953)) diff --git a/.changelog/unreleased/dependencies/1097-contracts-dep.md b/.changelog/v0.24.0-pre.2/dependencies/1097-contracts-dep.md similarity index 100% rename from .changelog/unreleased/dependencies/1097-contracts-dep.md rename to .changelog/v0.24.0-pre.2/dependencies/1097-contracts-dep.md diff --git a/.changelog/unreleased/dependencies/1113-prost-0.10.md b/.changelog/v0.24.0-pre.2/dependencies/1113-prost-0.10.md similarity index 100% rename from .changelog/unreleased/dependencies/1113-prost-0.10.md rename to .changelog/v0.24.0-pre.2/dependencies/1113-prost-0.10.md diff --git a/.changelog/unreleased/features/1105-chain-id-constants.md b/.changelog/v0.24.0-pre.2/features/1105-chain-id-constants.md similarity index 100% rename from .changelog/unreleased/features/1105-chain-id-constants.md rename to .changelog/v0.24.0-pre.2/features/1105-chain-id-constants.md diff --git a/.changelog/unreleased/features/832-block-by-hash.md b/.changelog/v0.24.0-pre.2/features/832-block-by-hash.md similarity index 100% rename from .changelog/unreleased/features/832-block-by-hash.md rename to .changelog/v0.24.0-pre.2/features/832-block-by-hash.md diff --git a/.changelog/v0.24.0-pre.2/summary.md b/.changelog/v0.24.0-pre.2/summary.md new file mode 100644 index 000000000..ac304b505 --- /dev/null +++ b/.changelog/v0.24.0-pre.2/summary.md @@ -0,0 +1,4 @@ +*May 4, 2022* + +The major change in this pre-release is the introduction of a fully `async` +light client interface. diff --git a/.changelog/unreleased/workarounds/1021-rpc-block_results.md b/.changelog/v0.24.0-pre.2/workarounds/1021-rpc-block_results.md similarity index 100% rename from .changelog/unreleased/workarounds/1021-rpc-block_results.md rename to .changelog/v0.24.0-pre.2/workarounds/1021-rpc-block_results.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 9157b6c32..9b825c46e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,43 @@ # CHANGELOG +## v0.24.0-pre.2 + +*May 4, 2022* + +The major change in this pre-release is the introduction of a fully `async` +light client interface. + +### BREAKING CHANGES + +- `[tendermint-light-client]` Replace Io with async variant + ([#953](https://github.com/informalsystems/tendermint-rs/issues/953)) +- `[tendermint-proto]` Make `Protobuf::encode_vec()` infallible + ([#1064](https://github.com/informalsystems/tendermint-rs/issues/1064)) +- `[tools/rpc-probe]` CLI updated to support probing Gaia nodes in addition + to kvstore-based Tendermint nodes to generate static fixtures for RPC tests + ([#1084](https://github.com/informalsystems/tendermint-rs/pull/1084)) + +### DEPENDENCIES + +- `[tendermint-light-client]` Upgrade + [`contracts`](https://crates.io/crates/contracts) dependency to v0.6.2 + ([#1097](https://github.com/informalsystems/tendermint-rs/pull/1097)) +- Update `prost` to v0.10 ([#1113](https://github.com/informalsystems/tendermint- + rs/issues/1113)) + +### FEATURES + +- `[tendermint-rpc]` Add support for the `/block_by_hash` RPC endpoint. See for details ([#832](https://github.com/informalsystems/tendermint-rs/issues/832)). +- `[tendermint]` Add `tendermint::chain::Id::new` with support for chain ID constants + ([#1105](https://github.com/informalsystems/tendermint-rs/issues/1105)). + +### WORKAROUNDS + +- `[tendermint-rpc]` Allow deserialization of public keys from validator updates + from `block_results` endpoint in multiple JSON formats until this is fixed in + Tendermint + ([#1021](https://github.com/informalsystems/tendermint-rs/issues/1021)) + ## v0.24.0-pre.1 *Jan 13, 2022* diff --git a/abci/Cargo.toml b/abci/Cargo.toml index 1c88c4d37..cf29b8490 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-abci" -version = "0.24.0-pre.1" +version = "0.24.0-pre.2" 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.10", default-features = false } -tendermint-proto = { version = "0.24.0-pre.1", default-features = false, path = "../proto" } +tendermint-proto = { version = "0.24.0-pre.2", 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 19834eb0a..87a2aed7e 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-config" -version = "0.24.0-pre.1" # Also update `html_root_url` in lib.rs and +version = "0.24.0-pre.2" # 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.24.0-pre.1", default-features = false, path = "../tendermint" } +tendermint = { version = "0.24.0-pre.2", 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 34e030325..aaa2ba2bc 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.24.0-pre.1" +version = "0.24.0-pre.2" 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.24.0-pre.1", default-features = false, path = "../tendermint" } -tendermint-light-client-verifier = { version = "0.24.0-pre.1", default-features = false, path = "../light-client-verifier" } +tendermint = { version = "0.24.0-pre.2", default-features = false, path = "../tendermint" } +tendermint-light-client-verifier = { version = "0.24.0-pre.2", 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 a2afb5d5f..4529a8fe3 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.24.0-pre.1" +version = "0.24.0-pre.2" 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.24.0-pre.1", path = "../tendermint", default-features = false } +tendermint = { version = "0.24.0-pre.2", path = "../tendermint", default-features = false } derive_more = { version = "0.99.5", default-features = false, features = ["display"] } serde = { version = "1.0.106", default-features = false } time = { version = "0.3.5", default-features = false } diff --git a/light-client/Cargo.toml b/light-client/Cargo.toml index aed45bd62..980da53cf 100644 --- a/light-client/Cargo.toml +++ b/light-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-light-client" -version = "0.24.0-pre.1" +version = "0.24.0-pre.2" edition = "2018" license = "Apache-2.0" readme = "README.md" @@ -34,9 +34,9 @@ unstable = [] mbt = [] [dependencies] -tendermint = { version = "0.24.0-pre.1", path = "../tendermint", default-features = false } -tendermint-rpc = { version = "0.24.0-pre.1", path = "../rpc", default-features = false } -tendermint-light-client-verifier = { version = "0.24.0-pre.1", path = "../light-client-verifier", default-features = false } +tendermint = { version = "0.24.0-pre.2", path = "../tendermint", default-features = false } +tendermint-rpc = { version = "0.24.0-pre.2", path = "../rpc", default-features = false } +tendermint-light-client-verifier = { version = "0.24.0-pre.2", path = "../light-client-verifier", default-features = false } async-recursion = { version = "0.3", default-features = false } async-trait = { version = "0.1", default-features = false } diff --git a/light-client/src/lib.rs b/light-client/src/lib.rs index 966e94e4b..39c3691a8 100644 --- a/light-client/src/lib.rs +++ b/light-client/src/lib.rs @@ -8,7 +8,7 @@ nonstandard_style )] #![doc( - html_root_url = "https://docs.rs/tendermint-light-client/0.24.0-pre.1", + html_root_url = "https://docs.rs/tendermint-light-client/0.24.0-pre.2", 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 090655e95..7ec8b9fb3 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-p2p" -version = "0.24.0-pre.1" +version = "0.24.0-pre.2" edition = "2021" license = "Apache-2.0" repository = "https://github.com/informalsystems/tendermint-rs" @@ -46,9 +46,9 @@ x25519-dalek = { version = "1.1", default-features = false, features = [ zeroize = { version = "1.0", default-features = false } # path dependencies -tendermint = { version = "0.24.0-pre.1", default-features = false, path = "../tendermint" } -tendermint-proto = { version = "0.24.0-pre.1", default-features = false, path = "../proto" } -tendermint-std-ext = { version = "0.24.0-pre.1", default-features = false, path = "../std-ext" } +tendermint = { version = "0.24.0-pre.2", default-features = false, path = "../tendermint" } +tendermint-proto = { version = "0.24.0-pre.2", default-features = false, path = "../proto" } +tendermint-std-ext = { version = "0.24.0-pre.2", default-features = false, path = "../std-ext" } # optional dependencies prost-derive = { version = "0.10", optional = true } diff --git a/p2p/src/lib.rs b/p2p/src/lib.rs index dbfaf7ab9..1626ef0b6 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.24.0-pre.1", + html_root_url = "https://docs.rs/tendermint-p2p/0.24.0-pre.2", 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 22a57c112..b5ba28d6b 100644 --- a/pbt-gen/Cargo.toml +++ b/pbt-gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-pbt-gen" -version = "0.24.0-pre.1" +version = "0.24.0-pre.2" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0" diff --git a/proto/Cargo.toml b/proto/Cargo.toml index f2d49e9fb..7ad2d10dd 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-proto" -version = "0.24.0-pre.1" +version = "0.24.0-pre.2" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0" diff --git a/proto/src/lib.rs b/proto/src/lib.rs index 71dda8c8a..4a4a4ddf7 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.24.0-pre.1")] +#![doc(html_root_url = "https://docs.rs/tendermint-proto/0.24.0-pre.2")] extern crate alloc; diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index e58e700a9..eab06ea54 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc" -version = "0.24.0-pre.1" +version = "0.24.0-pre.2" edition = "2018" license = "Apache-2.0" homepage = "https://www.tendermint.com/" @@ -68,9 +68,9 @@ 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.24.0-pre.1", path = "../config", default-features = false } -tendermint = { version = "0.24.0-pre.1", default-features = false, path = "../tendermint" } -tendermint-proto = { version = "0.24.0-pre.1", default-features = false, path = "../proto" } +tendermint-config = { version = "0.24.0-pre.2", path = "../config", default-features = false } +tendermint = { version = "0.24.0-pre.2", default-features = false, path = "../tendermint" } +tendermint-proto = { version = "0.24.0-pre.2", default-features = false, path = "../proto" } thiserror = { version = "1", default-features = false } time = { version = "0.3.5", 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 c7ef02cf5..236a02d5a 100644 --- a/std-ext/Cargo.toml +++ b/std-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-std-ext" -version = "0.24.0-pre.1" +version = "0.24.0-pre.2" edition = "2018" license = "Apache-2.0" homepage = "https://www.tendermint.com/" diff --git a/tendermint/Cargo.toml b/tendermint/Cargo.toml index b2a52fdf1..849bea7c3 100644 --- a/tendermint/Cargo.toml +++ b/tendermint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint" -version = "0.24.0-pre.1" # Also update `html_root_url` in lib.rs and +version = "0.24.0-pre.2" # 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/" @@ -47,7 +47,7 @@ sha2 = { version = "0.9", default-features = false } signature = { version = "1.2", default-features = false } subtle = { version = "2", default-features = false } subtle-encoding = { version = "0.5", default-features = false, features = ["bech32-preview"] } -tendermint-proto = { version = "0.24.0-pre.1", default-features = false, path = "../proto" } +tendermint-proto = { version = "0.24.0-pre.2", default-features = false, path = "../proto" } time = { version = "0.3.5", 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 e25f107b7..fec71fe49 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.24.0-pre.1", + html_root_url = "https://docs.rs/tendermint/0.24.0-pre.2", 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 61526afa6..3b485407b 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.24.0-pre.1" +version = "0.24.0-pre.2" edition = "2018" license = "Apache-2.0" categories = ["development", "test", "tools"] diff --git a/testgen/Cargo.toml b/testgen/Cargo.toml index 27d39efef..26a1e5b57 100644 --- a/testgen/Cargo.toml +++ b/testgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-testgen" -version = "0.24.0-pre.1" +version = "0.24.0-pre.2" authors = ["Informal Systems "] edition = "2018" readme = "README.md" @@ -16,7 +16,7 @@ description = """ """ [dependencies] -tendermint = { version = "0.24.0-pre.1", path = "../tendermint", features = ["clock"] } +tendermint = { version = "0.24.0-pre.2", path = "../tendermint", features = ["clock"] } serde = { version = "1", default-features = false, features = ["derive"] } serde_json = { version = "1", default-features = false, features = ["std"] } ed25519-consensus = { version = "1.2", default-features = false } diff --git a/tools/abci-test/Cargo.toml b/tools/abci-test/Cargo.toml index 06899f094..b9a88f5f2 100644 --- a/tools/abci-test/Cargo.toml +++ b/tools/abci-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abci-test" -version = "0.24.0-pre.1" +version = "0.24.0-pre.2" 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.24.0-pre.1", path = "../../tendermint" } -tendermint-config = { version = "0.24.0-pre.1", path = "../../config" } -tendermint-rpc = { version = "0.24.0-pre.1", path = "../../rpc", features = [ "websocket-client" ] } +tendermint = { version = "0.24.0-pre.2", path = "../../tendermint" } +tendermint-config = { version = "0.24.0-pre.2", path = "../../config" } +tendermint-rpc = { version = "0.24.0-pre.2", path = "../../rpc", features = [ "websocket-client" ] } tracing = "0.1" tracing-subscriber = "0.2" tokio = { version = "1", features = ["full"] } diff --git a/tools/kvstore-test/Cargo.toml b/tools/kvstore-test/Cargo.toml index 6a4ca9275..de47a5b41 100644 --- a/tools/kvstore-test/Cargo.toml +++ b/tools/kvstore-test/Cargo.toml @@ -12,10 +12,10 @@ edition = "2018" async-trait = "0.1" contracts = "0.4.0" futures = "0.3" -tendermint = { version = "0.24.0-pre.1", path = "../../tendermint" } -tendermint-light-client = { version = "0.24.0-pre.1", path = "../../light-client", features = ["unstable"] } -tendermint-light-client-verifier = { version = "0.24.0-pre.1", path = "../../light-client-verifier" } -tendermint-rpc = { version = "0.24.0-pre.1", path = "../../rpc", features = [ "http-client", "websocket-client" ] } +tendermint = { version = "0.24.0-pre.2", path = "../../tendermint" } +tendermint-light-client = { version = "0.24.0-pre.2", path = "../../light-client", features = ["unstable"] } +tendermint-light-client-verifier = { version = "0.24.0-pre.2", path = "../../light-client-verifier" } +tendermint-rpc = { version = "0.24.0-pre.2", path = "../../rpc", features = [ "http-client", "websocket-client" ] } tokio = { version = "1.17", features = [ "rt-multi-thread", "macros" ] } tracing = "0.1" tracing-subscriber = "0.2" diff --git a/tools/rpc-probe/Cargo.toml b/tools/rpc-probe/Cargo.toml index 1c02c7911..acfc67f60 100644 --- a/tools/rpc-probe/Cargo.toml +++ b/tools/rpc-probe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc-probe" -version = "0.24.0-pre.1" +version = "0.24.0-pre.2" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0"