From 7637b2f4af676f11000cf351f516cf119d7e4273 Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Thu, 21 Oct 2021 17:06:31 +0200 Subject: [PATCH] Bump version to 0.23.0-internal (#1009) --- abci/Cargo.toml | 4 ++-- config/Cargo.toml | 6 +++--- light-client-js/Cargo.toml | 6 +++--- light-client/Cargo.toml | 6 +++--- 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 | 6 +++--- 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/rpc-probe/Cargo.toml | 2 +- 19 files changed, 40 insertions(+), 40 deletions(-) diff --git a/abci/Cargo.toml b/abci/Cargo.toml index ef1524ba7..bb2a808b7 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-abci" -version = "0.22.0" +version = "0.23.0-internal" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0" @@ -34,7 +34,7 @@ std = [ [dependencies] bytes = { version = "1.0", default-features = false } prost = { package = "informalsystems-prost", version = "0.8.1", default-features = false } -tendermint-proto = { version = "0.22.0", default-features = false, path = "../proto" } +tendermint-proto = { version = "0.23.0-internal", default-features = false, path = "../proto" } tracing = { version = "0.1", default-features = false } flex-error = { version = "0.4.3", default-features = false } structopt = { version = "0.3", optional = true, default-features = false } diff --git a/config/Cargo.toml b/config/Cargo.toml index 5dbf430ba..36cc77dae 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tendermint-config" -version = "0.22.0" # Also update `html_root_url` in lib.rs and - # depending crates (rpc, light-node, ..) when bumping this +version = "0.23.0-internal" # 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/" repository = "https://github.com/informalsystems/tendermint-rs/tree/master/tendermint" @@ -28,7 +28,7 @@ rustdoc-args = ["--cfg", "docsrs"] crate-type = ["cdylib", "rlib"] [dependencies] -tendermint = { version = "0.22.0", default-features = false, path = "../tendermint" } +tendermint = { version = "0.23.0-internal", default-features = false, path = "../tendermint" } flex-error = { version = "0.4.1", 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 0bda61054..73f259ebf 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.22.0" +version = "0.23.0" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0" @@ -24,8 +24,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.22.0", path = "../tendermint" } -tendermint-light-client = { version = "0.22.0", path = "../light-client", default-features = false } +tendermint = { version = "0.23.0-internal", path = "../tendermint" } +tendermint-light-client = { version = "0.23.0-internal", 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 95ca58296..d56a7fe66 100644 --- a/light-client/Cargo.toml +++ b/light-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-light-client" -version = "0.22.0" +version = "0.23.0-internal" edition = "2018" license = "Apache-2.0" readme = "README.md" @@ -41,8 +41,8 @@ std = [ mbt = [] [dependencies] -tendermint = { version = "0.22.0", path = "../tendermint" } -tendermint-rpc = { version = "0.22.0", path = "../rpc", default-features = false } +tendermint = { version = "0.23.0-internal", path = "../tendermint" } +tendermint-rpc = { version = "0.23.0-internal", path = "../rpc", default-features = false } chrono = { version = "0.4", default-features = false, features = ["clock"] } contracts = "0.4.0" diff --git a/light-client/src/lib.rs b/light-client/src/lib.rs index 92ff1f381..7fd2ceb8a 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.22.0", + html_root_url = "https://docs.rs/tendermint-light-client/0.23.0-internal", 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 0a82b44b3..0e4ba9ebc 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-p2p" -version = "0.22.0" +version = "0.23.0-internal" edition = "2018" license = "Apache-2.0" repository = "https://github.com/informalsystems/tendermint-rs" @@ -48,9 +48,9 @@ aead = { version = "0.4.1", default-features = false } flex-error = { version = "0.4.3", default-features = false } # path dependencies -tendermint = { path = "../tendermint", version = "0.22.0" } -tendermint-proto = { path = "../proto", version = "0.22.0" } -tendermint-std-ext = { path = "../std-ext", version = "0.22.0" } +tendermint = { path = "../tendermint", version = "0.23.0-internal" } +tendermint-proto = { path = "../proto", version = "0.23.0-internal" } +tendermint-std-ext = { path = "../std-ext", version = "0.23.0-internal" } # optional dependencies prost-derive = { package = "informalsystems-prost-derive", version = "0.8.1", optional = true } diff --git a/p2p/src/lib.rs b/p2p/src/lib.rs index d888b252b..5a65411a4 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.22.0", + html_root_url = "https://docs.rs/tendermint-p2p/0.23.0-internal", 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 81a7f7f7c..e02f019b6 100644 --- a/pbt-gen/Cargo.toml +++ b/pbt-gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-pbt-gen" -version = "0.22.0" +version = "0.23.0-internal" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0" diff --git a/proto/Cargo.toml b/proto/Cargo.toml index b18c28b42..57fa3bd1e 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-proto" -version = "0.22.0" +version = "0.23.0-internal" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0" diff --git a/proto/src/lib.rs b/proto/src/lib.rs index 4e37cbaf8..e297ad3b8 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.22.0")] +#![doc(html_root_url = "https://docs.rs/tendermint-proto/0.23.0-internal")] /// Built-in prost_types with slight customization to enable JSON-encoding #[allow(warnings)] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 611d10b5e..022598a73 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc" -version = "0.22.0" +version = "0.23.0-internal" edition = "2018" license = "Apache-2.0" homepage = "https://www.tendermint.com/" @@ -73,9 +73,9 @@ pin-project = "1.0.1" serde = { version = "1", features = [ "derive" ] } serde_bytes = "0.11" serde_json = "1" -tendermint-config = { version = "0.22.0", path = "../config" } -tendermint = { version = "0.22.0", path = "../tendermint" } -tendermint-proto = { version = "0.22.0", path = "../proto" } +tendermint-config = { version = "0.23.0-internal", path = "../config" } +tendermint = { version = "0.23.0-internal", path = "../tendermint" } +tendermint-proto = { version = "0.23.0-internal", path = "../proto" } thiserror = "1" uuid = { version = "0.8", default-features = false } subtle-encoding = { version = "0.5", features = ["bech32-preview"] } diff --git a/std-ext/Cargo.toml b/std-ext/Cargo.toml index 990bc0a84..f44b160b4 100644 --- a/std-ext/Cargo.toml +++ b/std-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-std-ext" -version = "0.22.0" +version = "0.23.0-internal" edition = "2018" license = "Apache-2.0" homepage = "https://www.tendermint.com/" diff --git a/tendermint/Cargo.toml b/tendermint/Cargo.toml index 025f21c05..c86544dde 100644 --- a/tendermint/Cargo.toml +++ b/tendermint/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tendermint" -version = "0.22.0" # Also update `html_root_url` in lib.rs and - # depending crates (rpc, light-node, ..) when bumping this +version = "0.23.0-internal" # 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/" repository = "https://github.com/informalsystems/tendermint-rs/tree/master/tendermint" @@ -51,7 +51,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.22.0", default-features = false, path = "../proto" } +tendermint-proto = { version = "0.23.0-internal", default-features = false, path = "../proto" } zeroize = { version = "1.1", default-features = false, features = ["zeroize_derive", "alloc"] } flex-error = { version = "0.4.3", default-features = false } k256 = { version = "0.9", optional = true, default-features = false, features = ["ecdsa", "sha256"] } diff --git a/tendermint/src/lib.rs b/tendermint/src/lib.rs index 28b3f26cb..9124e6940 100644 --- a/tendermint/src/lib.rs +++ b/tendermint/src/lib.rs @@ -14,7 +14,7 @@ )] #![forbid(unsafe_code)] #![doc( - html_root_url = "https://docs.rs/tendermint/0.22.0", + html_root_url = "https://docs.rs/tendermint/0.23.0-internal", 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 4c5fdf8c9..1a9c24987 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.22.0" +version = "0.23.0-internal" edition = "2018" license = "Apache-2.0" categories = ["development", "test", "tools"] diff --git a/testgen/Cargo.toml b/testgen/Cargo.toml index b6120e47b..b86a4fecb 100644 --- a/testgen/Cargo.toml +++ b/testgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-testgen" -version = "0.22.0" +version = "0.23.0-internal" authors = ["Informal Systems "] edition = "2018" readme = "README.md" @@ -16,7 +16,7 @@ description = """ """ [dependencies] -tendermint = { version = "0.22.0", path = "../tendermint" } +tendermint = { version = "0.23.0-internal", 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 a41bcdf3f..da694fdab 100644 --- a/tools/abci-test/Cargo.toml +++ b/tools/abci-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abci-test" -version = "0.22.0" +version = "0.23.0-internal" authors = ["Informal Systems "] edition = "2018" description = """ @@ -13,9 +13,9 @@ description = """ [dependencies] futures = "0.3" structopt = "0.3" -tendermint = { version = "0.22.0", path = "../../tendermint" } -tendermint-config = { version = "0.22.0", path = "../../config" } -tendermint-rpc = { version = "0.22.0", path = "../../rpc", features = [ "websocket-client" ] } +tendermint = { version = "0.23.0-internal", path = "../../tendermint" } +tendermint-config = { version = "0.23.0-internal", path = "../../config" } +tendermint-rpc = { version = "0.23.0-internal", 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 6ef6bc403..ba8f1976c 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.22.0", path = "../../tendermint" } -tendermint-light-client = { version = "0.22.0", path = "../../light-client", features = ["unstable"] } -tendermint-rpc = { version = "0.22.0", path = "../../rpc", features = [ "http-client", "websocket-client" ] } +tendermint = { version = "0.23.0-internal", path = "../../tendermint" } +tendermint-light-client = { version = "0.23.0-internal", path = "../../light-client", features = ["unstable"] } +tendermint-rpc = { version = "0.23.0-internal", 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 d3abadc7c..c4f5ef501 100644 --- a/tools/rpc-probe/Cargo.toml +++ b/tools/rpc-probe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tendermint-rpc-probe" -version = "0.22.0" +version = "0.23.0-internal" authors = ["Informal Systems "] edition = "2018" license = "Apache-2.0"