-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update changelog for v0.19.0 release Signed-off-by: Thane Thomson <[email protected]> * Bump versions to v0.19.0 Signed-off-by: Thane Thomson <[email protected]> * Add minor documentation for tendermint-light-client-js crate Signed-off-by: Thane Thomson <[email protected]> * Add abci and light-client-js crates to release script Signed-off-by: Thane Thomson <[email protected]> * Add cargo metadata for abci and light-client-js Signed-off-by: Thane Thomson <[email protected]> * Fix keywords in abci and light-client-js crates Signed-off-by: Thane Thomson <[email protected]> * rpc: add `Client::wait_until_healthy` method (#855) Adds a method which repeatedly polls the `/health` endpoint until it returns a successful response or a specified timeout elapses. This is useful when writing tests that need to wait for a node to boot up (e.g. inside of a docker container). * Temporarily remove RPC query parsing (#858) Signed-off-by: Thane Thomson <[email protected]> * Add CHANGELOG entry for #855 Signed-off-by: Thane Thomson <[email protected]> Co-authored-by: Tony Arcieri (iqlusion) <[email protected]>
- Loading branch information
1 parent
d1c8877
commit 2609b60
Showing
24 changed files
with
125 additions
and
596 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
[package] | ||
name = "tendermint-abci" | ||
version = "0.18.1" | ||
authors = ["Thane Thomson <[email protected]>"] | ||
edition = "2018" | ||
name = "tendermint-abci" | ||
version = "0.19.0" | ||
authors = ["Thane Thomson <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
keywords = ["abci", "blockchain", "bft", "consensus", "tendermint"] | ||
repository = "https://github.com/informalsystems/tendermint-rs" | ||
description = """ | ||
tendermint-abci provides a simple framework with which to build low-level | ||
applications on top of Tendermint. | ||
|
@@ -25,7 +29,7 @@ binary = [ "structopt", "tracing-subscriber" ] | |
bytes = "1.0" | ||
eyre = "0.6" | ||
prost = "0.7" | ||
tendermint-proto = { version = "0.18.1", path = "../proto" } | ||
tendermint-proto = { version = "0.19.0", path = "../proto" } | ||
thiserror = "1.0" | ||
tracing = "0.1" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
[package] | ||
name = "tendermint-light-client-js" | ||
version = "0.18.1" | ||
authors = [ | ||
name = "tendermint-light-client-js" | ||
version = "0.19.0" | ||
authors = [ | ||
"Romain Ruetschi <[email protected]>", | ||
"Thane Thomson <[email protected]>" | ||
] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
keywords = ["blockchain", "bft", "consensus", "light-client", "tendermint"] | ||
repository = "https://github.com/informalsystems/tendermint-rs" | ||
description = """ | ||
tendermint-light-client-js provides a lightweight, WASM-based interface to | ||
the Tendermint Light Client's verification functionality. | ||
""" | ||
repository = "https://github.com/informalsystems/tendermint-rs" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
@@ -24,8 +26,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.18.1", path = "../tendermint" } | ||
tendermint-light-client = { version = "0.18.1", path = "../light-client", default-features = false } | ||
tendermint = { version = "0.19.0", path = "../tendermint" } | ||
tendermint-light-client = { version = "0.19.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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tendermint-pbt-gen" | ||
version = "0.1.0" | ||
version = "0.19.0" | ||
authors = ["Shon Feder <[email protected]>"] | ||
edition = "2018" | ||
description = """ | ||
|
@@ -11,12 +11,9 @@ description = """ | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[features] | ||
|
||
default = ["time"] | ||
|
||
time = ["chrono"] | ||
|
||
[dependencies] | ||
|
||
chrono = { version = "0.4", features = ["serde"], optional = true} | ||
proptest = "0.10.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tendermint-proto" | ||
version = "0.18.1" | ||
version = "0.19.0" | ||
authors = ["Greg Szabo <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.