Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.23.0-internal #1009

Merged
merged 1 commit into from
Oct 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions abci/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-abci"
version = "0.22.0"
version = "0.23.0-internal"
authors = ["Informal Systems <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down Expand Up @@ -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 }
Expand Down
6 changes: 3 additions & 3 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions light-client-js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-light-client-js"
version = "0.22.0"
version = "0.23.0"
authors = ["Informal Systems <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions light-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion light-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))]
Expand Down
8 changes: 4 additions & 4 deletions p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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 }
2 changes: 1 addition & 1 deletion p2p/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)]

Expand Down
2 changes: 1 addition & 1 deletion pbt-gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-pbt-gen"
version = "0.22.0"
version = "0.23.0-internal"
authors = ["Informal Systems <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-proto"
version = "0.22.0"
version = "0.23.0-internal"
authors = ["Informal Systems <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion proto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
8 changes: 4 additions & 4 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand Down Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion std-ext/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand Down
6 changes: 3 additions & 3 deletions tendermint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion tendermint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)]

Expand Down
2 changes: 1 addition & 1 deletion test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions testgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-testgen"
version = "0.22.0"
version = "0.23.0-internal"
authors = ["Informal Systems <[email protected]>"]
edition = "2018"
readme = "README.md"
Expand All @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions tools/abci-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abci-test"
version = "0.22.0"
version = "0.23.0-internal"
authors = ["Informal Systems <[email protected]>"]
edition = "2018"
description = """
Expand All @@ -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"] }
6 changes: 3 additions & 3 deletions tools/kvstore-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tools/rpc-probe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-rpc-probe"
version = "0.22.0"
version = "0.23.0-internal"
authors = ["Informal Systems <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down