-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Release changelog Signed-off-by: Thane Thomson <[email protected]> * Build changelog Signed-off-by: Thane Thomson <[email protected]> * Bump crate versions to v0.23.5 Signed-off-by: Thane Thomson <[email protected]> * Add tendermint-light-client-verifier crate to release script Signed-off-by: Thane Thomson <[email protected]> * Update date in changelog and rebuild Signed-off-by: Thane Thomson <[email protected]> * Add readme for tendermint-light-client-verifier Signed-off-by: Thane Thomson <[email protected]>
- Loading branch information
1 parent
d560681
commit cad594d
Showing
25 changed files
with
90 additions
and
43 deletions.
There are no files selected for viewing
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*Jan 13, 2022* | ||
|
||
A single breaking change is provided by this release in order to move us closer | ||
toward `no_std` support in both tendermint-rs and ibc-rs. |
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-abci" | ||
version = "0.23.4" | ||
version = "0.23.5" | ||
authors = ["Informal Systems <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -33,7 +33,7 @@ binary = [ | |
[dependencies] | ||
bytes = { version = "1.0", default-features = false } | ||
prost = { version = "0.9", default-features = false } | ||
tendermint-proto = { version = "0.23.4", default-features = false, path = "../proto" } | ||
tendermint-proto = { version = "0.23.5", 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 } | ||
|
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-light-client-js" | ||
version = "0.23.4" | ||
version = "0.23.5" | ||
authors = ["Informal Systems <[email protected]>"] | ||
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.23.4", default-features = false, path = "../tendermint" } | ||
tendermint-light-client-verifier = { version = "0.23.4", default-features = false, path = "../light-client-verifier" } | ||
tendermint = { version = "0.23.5", default-features = false, path = "../tendermint" } | ||
tendermint-light-client-verifier = { version = "0.23.5", 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 | ||
|
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[![Crate][crate-image]][crate-link] | ||
[![Docs][docs-image]][docs-link] | ||
|
||
See the [repo root] for build status, license, rust version, etc. | ||
|
||
# Light Client Verifier | ||
|
||
The verification component of the [Light Client]. This is extracted in order to | ||
be able to make use of verification predicates without any of the I/O and | ||
dependencies on the Rust standard library (i.e. to facilitate `no_std` support). | ||
|
||
## Documentation | ||
|
||
See documentation on [crates.io][docs-link]. | ||
|
||
[//]: # (badges) | ||
|
||
[crate-image]: https://img.shields.io/crates/v/tendermint-light-client-verifier.svg | ||
[crate-link]: https://crates.io/crates/tendermint-light-client-verifier | ||
[docs-image]: https://docs.rs/tendermint-light-client-verifier/badge.svg | ||
[docs-link]: https://docs.rs/tendermint-light-client-verifier/ | ||
|
||
[//]: # (general links) | ||
|
||
[repo root]: https://github.com/informalsystems/tendermint-rs | ||
[quick start]: https://github.com/tendermint/tendermint/blob/master/docs/introduction/quick-start.md | ||
[Tendermint]: https://github.com/tendermint/tendermint | ||
[Light Client]: https://github.com/informalsystems/tendermint-rs/tree/master/light-client |
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.23.4" | ||
version = "0.23.5" | ||
authors = ["Informal Systems <[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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tendermint-proto" | ||
version = "0.23.4" | ||
version = "0.23.5" | ||
authors = ["Informal Systems <[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
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-testgen" | ||
version = "0.23.4" | ||
version = "0.23.5" | ||
authors = ["Informal Systems <[email protected]>"] | ||
edition = "2018" | ||
readme = "README.md" | ||
|
@@ -16,7 +16,7 @@ description = """ | |
""" | ||
|
||
[dependencies] | ||
tendermint = { version = "0.23.4", path = "../tendermint", features = ["clock"] } | ||
tendermint = { version = "0.23.5", path = "../tendermint", features = ["clock"] } | ||
serde = { version = "1", default-features = false, features = ["derive"] } | ||
serde_json = { version = "1", default-features = false, features = ["std"] } | ||
ed25519-dalek = { version = "1", default-features = false } | ||
|
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 = "abci-test" | ||
version = "0.23.4" | ||
version = "0.23.5" | ||
authors = ["Informal Systems <[email protected]>"] | ||
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.23.4", path = "../../tendermint" } | ||
tendermint-config = { version = "0.23.4", path = "../../config" } | ||
tendermint-rpc = { version = "0.23.4", path = "../../rpc", features = [ "websocket-client" ] } | ||
tendermint = { version = "0.23.5", path = "../../tendermint" } | ||
tendermint-config = { version = "0.23.5", path = "../../config" } | ||
tendermint-rpc = { version = "0.23.5", path = "../../rpc", features = [ "websocket-client" ] } | ||
tracing = "0.1" | ||
tracing-subscriber = "0.2" | ||
tokio = { version = "1", features = ["full"] } |
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-rpc-probe" | ||
version = "0.23.4" | ||
version = "0.23.5" | ||
authors = ["Informal Systems <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|