-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump version to v0.27.0 Signed-off-by: Thane Thomson <[email protected]> * Fix clippy nit Signed-off-by: Thane Thomson <[email protected]> * Prepare changelog release Signed-off-by: Thane Thomson <[email protected]> * Build changelog Signed-off-by: Thane Thomson <[email protected]> * Update references from master to main in contributing guidelines Signed-off-by: Thane Thomson <[email protected]> * Update CONTRIBUTING.md Co-authored-by: Mikhail Zabaluev <[email protected]> * Update release date Signed-off-by: Thane Thomson <[email protected]> Signed-off-by: Thane Thomson <[email protected]> Co-authored-by: Mikhail Zabaluev <[email protected]>
- Loading branch information
1 parent
e1468e2
commit e9c41de
Showing
32 changed files
with
126 additions
and
46 deletions.
There are no files selected for viewing
File renamed without changes.
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 @@ | ||
- `[tendermint-rpc]` Extract the `key` field from `query::Condition` and | ||
structure a `query::Condition` to have `key` and `operation` fields, since the | ||
`key` field is common to all conditions | ||
([#1230](https://github.com/informalsystems/tendermint-rs/issues/1230)) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,16 @@ | ||
*Nov 28, 2022* | ||
|
||
Following on from the ABCI domain type-related work in v0.26.0, this release | ||
deduplicates types across the `tendermint` and `tendermint-rpc` crates, and | ||
makes better use of our domain types across the crates (a big thanks to | ||
@mzabaluev here!). | ||
|
||
@romac helped make the RPC query interface more ergonomic, and @hu55a1n1 | ||
implemented Rust equivalents for Tendermint Go's | ||
[VerifyCommitLight](https://github.com/tendermint/tendermint/blob/a6dd0d270abc3c01f223eedee44d8b285ae273f6/types/validator_set.go#L722) | ||
and | ||
[VerifyCommitLightTrusting](https://github.com/tendermint/tendermint/blob/a6dd0d270abc3c01f223eedee44d8b285ae273f6/types/validator_set.go#L775) | ||
methods for the light client. | ||
|
||
Some additional convenience methods for the `Time` type were provided by | ||
@scalalang2. |
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-abci" | ||
version = "0.26.0" | ||
version = "0.27.0" | ||
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.11", default-features = false } | ||
tendermint-proto = { version = "0.26.0", default-features = false, path = "../proto" } | ||
tendermint-proto = { version = "0.27.0", 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.26.0" | ||
version = "0.27.0" | ||
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.26.0", default-features = false, path = "../tendermint" } | ||
tendermint-light-client-verifier = { version = "0.26.0", default-features = false, path = "../light-client-verifier" } | ||
tendermint = { version = "0.27.0", default-features = false, path = "../tendermint" } | ||
tendermint-light-client-verifier = { version = "0.27.0", 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
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.26.0" | ||
version = "0.27.0" | ||
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.26.0" | ||
version = "0.27.0" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tendermint-testgen" | ||
version = "0.26.0" | ||
version = "0.27.0" | ||
authors = ["Informal Systems <[email protected]>"] | ||
edition = "2018" | ||
readme = "README.md" | ||
|
@@ -16,7 +16,7 @@ description = """ | |
""" | ||
|
||
[dependencies] | ||
tendermint = { version = "0.26.0", path = "../tendermint", features = ["clock"] } | ||
tendermint = { version = "0.27.0", 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.26.0" | ||
version = "0.27.0" | ||
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.26.0", path = "../../tendermint" } | ||
tendermint-config = { version = "0.26.0", path = "../../config" } | ||
tendermint-rpc = { version = "0.26.0", path = "../../rpc", features = [ "websocket-client" ] } | ||
tendermint = { version = "0.27.0", path = "../../tendermint" } | ||
tendermint-config = { version = "0.27.0", path = "../../config" } | ||
tendermint-rpc = { version = "0.27.0", path = "../../rpc", features = [ "websocket-client" ] } | ||
tracing = "0.1" | ||
tracing-subscriber = "0.2" | ||
tokio = { version = "1.20", 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
Oops, something went wrong.