From 464973a6a2911c2752febbdc7df314a2e8fc0bb5 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Mon, 21 Jun 2021 15:16:34 -0400 Subject: [PATCH] Bump versions to v0.20.0 Signed-off-by: Thane Thomson --- abci/Cargo.toml | 4 ++-- light-client-js/Cargo.toml | 6 +++--- light-client/Cargo.toml | 6 +++--- light-client/src/lib.rs | 2 +- p2p/Cargo.toml | 6 +++--- p2p/src/lib.rs | 2 +- pbt-gen/Cargo.toml | 2 +- proto/Cargo.toml | 2 +- proto/src/lib.rs | 2 +- rpc/Cargo.toml | 6 +++--- tendermint/Cargo.toml | 4 ++-- tendermint/src/lib.rs | 2 +- test/Cargo.toml | 2 +- testgen/Cargo.toml | 4 ++-- tools/abci-test/Cargo.toml | 6 +++--- tools/kvstore-test/Cargo.toml | 6 +++--- tools/rpc-probe/Cargo.toml | 2 +- 17 files changed, 32 insertions(+), 32 deletions(-) diff --git a/abci/Cargo.toml b/abci/Cargo.toml index 874f470c5..0d40662cb 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-abci" -version = "0.19.0" +version = "0.20.0" authors = ["Thane Thomson "] edition = "2018" license = "Apache-2.0" @@ -30,7 +30,7 @@ binary = [ "structopt", "tracing-subscriber" ] bytes = "1.0" eyre = "0.6" prost = "0.7" -tendermint-proto = { version = "0.19.0", path = "../proto" } +tendermint-proto = { version = "0.20.0", path = "../proto" } thiserror = "1.0" tracing = "0.1" diff --git a/light-client-js/Cargo.toml b/light-client-js/Cargo.toml index ceb369cab..722bf5b2f 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.19.0" +version = "0.20.0" authors = [ "Romain Ruetschi ", "Thane Thomson " @@ -27,8 +27,8 @@ serde = { version = "1.0", features = [ "derive" ] } serde_json = "1.0" # TODO(thane): Remove once https://github.com/rustwasm/wasm-bindgen/issues/2508 is resolved syn = "=1.0.65" -tendermint = { version = "0.19.0", path = "../tendermint" } -tendermint-light-client = { version = "0.19.0", path = "../light-client", default-features = false } +tendermint = { version = "0.20.0", path = "../tendermint" } +tendermint-light-client = { version = "0.20.0", path = "../light-client", default-features = false } wasm-bindgen = { version = "0.2.63", features = [ "serde-serialize" ] } # The `console_error_panic_hook` crate provides better debugging of panics by diff --git a/light-client/Cargo.toml b/light-client/Cargo.toml index 57b5ab4ab..e4d1e1374 100644 --- a/light-client/Cargo.toml +++ b/light-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-light-client" -version = "0.19.0" +version = "0.20.0" edition = "2018" license = "Apache-2.0" readme = "README.md" @@ -37,8 +37,8 @@ lightstore-sled = ["sled"] unstable = [] [dependencies] -tendermint = { version = "0.19.0", path = "../tendermint" } -tendermint-rpc = { version = "0.19.0", path = "../rpc", default-features = false } +tendermint = { version = "0.20.0", path = "../tendermint" } +tendermint-rpc = { version = "0.20.0", path = "../rpc", default-features = false } anomaly = { version = "0.2.0", features = ["serializer"] } contracts = "0.4.0" diff --git a/light-client/src/lib.rs b/light-client/src/lib.rs index aa2c8aa88..ab9165253 100644 --- a/light-client/src/lib.rs +++ b/light-client/src/lib.rs @@ -10,7 +10,7 @@ nonstandard_style )] #![doc( - html_root_url = "https://docs.rs/tendermint-light-client/0.19.0", + html_root_url = "https://docs.rs/tendermint-light-client/0.20.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 14ec55582..59f565b90 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-p2p" -version = "0.19.0" +version = "0.20.0" edition = "2018" license = "Apache-2.0" repository = "https://github.com/informalsystems/tendermint-rs" @@ -39,8 +39,8 @@ x25519-dalek = "1.1" zeroize = "1" # path dependencies -tendermint = { path = "../tendermint", version = "0.19.0" } -tendermint-proto = { path = "../proto", version = "0.19.0" } +tendermint = { path = "../tendermint", version = "0.20.0" } +tendermint-proto = { path = "../proto", version = "0.20.0" } # optional dependencies prost-amino = { version = "0.6", optional = true } diff --git a/p2p/src/lib.rs b/p2p/src/lib.rs index 2b1fd8426..b2b259314 100644 --- a/p2p/src/lib.rs +++ b/p2p/src/lib.rs @@ -21,7 +21,7 @@ unused_qualifications )] #![doc( - html_root_url = "https://docs.rs/tendermint-p2p/0.19.0", + html_root_url = "https://docs.rs/tendermint-p2p/0.20.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 a58984b30..5f3338614 100644 --- a/pbt-gen/Cargo.toml +++ b/pbt-gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-pbt-gen" -version = "0.19.0" +version = "0.20.0" authors = ["Shon Feder "] edition = "2018" license = "Apache-2.0" diff --git a/proto/Cargo.toml b/proto/Cargo.toml index ae266f74c..37e83189c 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-proto" -version = "0.19.0" +version = "0.20.0" authors = ["Greg Szabo "] edition = "2018" license = "Apache-2.0" diff --git a/proto/src/lib.rs b/proto/src/lib.rs index 9f5a95dae..22233a8b6 100644 --- a/proto/src/lib.rs +++ b/proto/src/lib.rs @@ -3,7 +3,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.19.0")] +#![doc(html_root_url = "https://docs.rs/tendermint-proto/0.20.0")] /// Built-in prost_types with slight customization to enable JSON-encoding #[allow(warnings)] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index b5ead6e71..71c18fd7a 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc" -version = "0.19.0" +version = "0.20.0" edition = "2018" license = "Apache-2.0" homepage = "https://www.tendermint.com/" @@ -70,8 +70,8 @@ pin-project = "1.0.1" serde = { version = "1", features = [ "derive" ] } serde_bytes = "0.11" serde_json = "1" -tendermint = { version = "0.19.0", path = "../tendermint" } -tendermint-proto = { version = "0.19.0", path = "../proto" } +tendermint = { version = "0.20.0", path = "../tendermint" } +tendermint-proto = { version = "0.20.0", path = "../proto" } thiserror = "1" uuid = { version = "0.8", default-features = false } subtle-encoding = { version = "0.5", features = ["bech32-preview"] } diff --git a/tendermint/Cargo.toml b/tendermint/Cargo.toml index e3ae5882b..343065601 100644 --- a/tendermint/Cargo.toml +++ b/tendermint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint" -version = "0.19.0" # Also update `html_root_url` in lib.rs and +version = "0.20.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/" @@ -53,7 +53,7 @@ signature = "1.2" subtle = "2" subtle-encoding = { version = "0.5", features = ["bech32-preview"] } thiserror = "1" -tendermint-proto = { version = "0.19.0", path = "../proto" } +tendermint-proto = { version = "0.20.0", path = "../proto" } toml = { version = "0.5" } url = { version = "2.2" } zeroize = { version = "1.1", features = ["zeroize_derive"] } diff --git a/tendermint/src/lib.rs b/tendermint/src/lib.rs index 38514cfe3..25f087097 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.19.0", + html_root_url = "https://docs.rs/tendermint/0.20.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 ea1fbebe4..83471d1a7 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.19.0" +version = "0.20.0" edition = "2018" license = "Apache-2.0" categories = ["development", "test", "tools"] diff --git a/testgen/Cargo.toml b/testgen/Cargo.toml index 46ec0db00..6572594a5 100644 --- a/testgen/Cargo.toml +++ b/testgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-testgen" -version = "0.19.0" +version = "0.20.0" authors = ["Andrey Kuprianov ", "Shivani Joshi "] edition = "2018" readme = "README.md" @@ -16,7 +16,7 @@ description = """ """ [dependencies] -tendermint = { version = "0.19.0", path = "../tendermint" } +tendermint = { version = "0.20.0", path = "../tendermint" } serde = { version = "1", features = ["derive"] } serde_json = "1" ed25519-dalek = "1" diff --git a/tools/abci-test/Cargo.toml b/tools/abci-test/Cargo.toml index 71d1e5118..4597d0304 100644 --- a/tools/abci-test/Cargo.toml +++ b/tools/abci-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abci-test" -version = "0.19.0" +version = "0.20.0" authors = ["Thane Thomson "] edition = "2018" description = """ @@ -13,8 +13,8 @@ description = """ [dependencies] futures = "0.3" structopt = "0.3" -tendermint = { version = "0.19.0", path = "../../tendermint" } -tendermint-rpc = { version = "0.19.0", path = "../../rpc", features = [ "websocket-client" ] } +tendermint = { version = "0.20.0", path = "../../tendermint" } +tendermint-rpc = { version = "0.20.0", 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 e28a2fe4c..cb0a6810e 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.19.0", path = "../../tendermint" } -tendermint-light-client = { version = "0.19.0", path = "../../light-client", features = ["unstable"] } -tendermint-rpc = { version = "0.19.0", path = "../../rpc", features = [ "http-client", "websocket-client" ] } +tendermint = { version = "0.20.0", path = "../../tendermint" } +tendermint-light-client = { version = "0.20.0", path = "../../light-client", features = ["unstable"] } +tendermint-rpc = { version = "0.20.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/rpc-probe/Cargo.toml b/tools/rpc-probe/Cargo.toml index f34a1ca64..641a1d67d 100644 --- a/tools/rpc-probe/Cargo.toml +++ b/tools/rpc-probe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc-probe" -version = "0.19.0" +version = "0.20.0" authors = ["Thane Thomson "] edition = "2018" license = "Apache-2.0"