-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix changelog entry formatting Signed-off-by: Thane Thomson <[email protected]> * Add link to changelog entry Signed-off-by: Thane Thomson <[email protected]> * Prepare v0.20.0 changelog Signed-off-by: Thane Thomson <[email protected]> * Expand crate name for clarity Signed-off-by: Thane Thomson <[email protected]> * Fix summary wording Signed-off-by: Thane Thomson <[email protected]> * Fix missing closing brace Signed-off-by: Thane Thomson <[email protected]> * Build changelog Signed-off-by: Thane Thomson <[email protected]> * Remove tendermint-light-node from release script Signed-off-by: Thane Thomson <[email protected]> * Bump versions to v0.20.0 Signed-off-by: Thane Thomson <[email protected]> * Update .changelog to reflect incoming changes from #910 Signed-off-by: Thane Thomson <[email protected]> * Remove superfluous breaking changes references Signed-off-by: Thane Thomson <[email protected]> * Rebuild changelog Signed-off-by: Thane Thomson <[email protected]> * Add dates to releases Signed-off-by: Thane Thomson <[email protected]> * Rebuild changelog Signed-off-by: Thane Thomson <[email protected]> * Update .changelog/v0.20.0/summary.md Co-authored-by: Alexander Simmerl <[email protected]> * Update .changelog/v0.20.0/summary.md Co-authored-by: Alexander Simmerl <[email protected]> * Rebuild changelog Signed-off-by: Thane Thomson <[email protected]> * Update .changelog/v0.20.0/summary.md * Rebuild changelog Signed-off-by: Thane Thomson <[email protected]> Co-authored-by: Alexander Simmerl <[email protected]>
- Loading branch information
1 parent
c305efd
commit 21ef18f
Showing
32 changed files
with
113 additions
and
47 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
Empty file.
1 change: 0 additions & 1 deletion
1
.changelog/unreleased/breaking-changes/898-change-error-variant.md
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
.changelog/v0.20.0/breaking-changes/898-change-error-variant.md
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 @@ | ||
* `[tendermint-p2p]` Remove superfluous module name suffixes in `p2p::error` ([#898](https://github.com/informalsystems/tendermint-rs/pull/898)) |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...log/unreleased/bug-fixes/876-delivertx.md → ...ngelog/v0.20.0/bug-fixes/876-delivertx.md
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,3 +1,3 @@ | ||
- `[tendermint-abci,tendermint-rpc]` Fix DeliverTx response deserialization | ||
* `[tendermint-abci,tendermint-rpc]` Fix DeliverTx response deserialization | ||
issues with `gas_wanted` and `gas_used` fields | ||
([#876](https://github.com/informalsystems/tendermint-rs/issues/876)) |
2 changes: 1 addition & 1 deletion
2
...released/bug-fixes/897-outdated-config.md → .../v0.20.0/bug-fixes/897-outdated-config.md
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 +1 @@ | ||
- `[tendermint]` Update TendermintConfig for Tendermint v.0.34.x ([#897](https://github.com/informalsystems/tendermint-rs/issues/897)) | ||
* `[tendermint]` Update TendermintConfig for Tendermint v.0.34.x ([#897](https://github.com/informalsystems/tendermint-rs/issues/897)) |
2 changes: 1 addition & 1 deletion
2
...leased/bug-fixes/908-config-opt-values.md → ...0.20.0/bug-fixes/908-config-opt-values.md
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 +1 @@ | ||
- `[tendermint]` Better handling of optional values in TendermintConfig ([#908](https://github.com/informalsystems/tendermint-rs/issues/908)) | ||
* `[tendermint]` Better handling of optional values in TendermintConfig ([#908](https://github.com/informalsystems/tendermint-rs/issues/908)) |
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
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,19 @@ | ||
*Jun 22, 2021* | ||
|
||
This release's number is bumped up to v0.20.0 due to two minor breaking changes | ||
in our public APIs (see the breaking changes section below for details). | ||
|
||
Also, since nobody was really making use of the Light Node, we decided to remove | ||
its crate from the repo for now. If anyone needs it back, please contact us and | ||
we'll restore it (although, we are considering migrating any and all binaries to | ||
their own repositories in the future to separate library-level concerns from | ||
operational ones). | ||
|
||
The `tendermint-p2p` crate is still undergoing significant expansion (thanks to | ||
@xla and @melekes). A lot's been done and we're in the process of finalizing | ||
this new architecture, which will form the basis for future work towards | ||
building more Tendermint nodes in Rust. More on this in future | ||
releases. | ||
|
||
Other than that, this release mainly contains various small bug fixes, | ||
improvements and dependency updates. |
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.19.0" | ||
version = "0.20.0" | ||
authors = ["Thane Thomson <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -30,7 +30,7 @@ binary = [ "structopt", "tracing-subscriber" ] | |
bytes = "1.0" | ||
eyre = "0.6" | ||
prost = "0.7" | ||
tendermint-proto = { version = "0.19.0", path = "../proto" } | ||
tendermint-proto = { version = "0.20.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,6 +1,6 @@ | ||
[package] | ||
name = "tendermint-light-client-js" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = [ | ||
"Romain Ruetschi <[email protected]>", | ||
"Thane Thomson <[email protected]>" | ||
|
@@ -27,8 +27,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.19.0", path = "../tendermint" } | ||
tendermint-light-client = { version = "0.19.0", path = "../light-client", default-features = false } | ||
tendermint = { version = "0.20.0", path = "../tendermint" } | ||
tendermint-light-client = { version = "0.20.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tendermint-pbt-gen" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Shon Feder <[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.19.0" | ||
version = "0.20.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
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.19.0" | ||
version = "0.20.0" | ||
authors = ["Andrey Kuprianov <[email protected]>", "Shivani Joshi <[email protected]>"] | ||
edition = "2018" | ||
readme = "README.md" | ||
|
@@ -16,7 +16,7 @@ description = """ | |
""" | ||
|
||
[dependencies] | ||
tendermint = { version = "0.19.0", path = "../tendermint" } | ||
tendermint = { version = "0.20.0", path = "../tendermint" } | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = "1" | ||
ed25519-dalek = "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 = "abci-test" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Thane Thomson <[email protected]>"] | ||
edition = "2018" | ||
description = """ | ||
|
@@ -13,8 +13,8 @@ description = """ | |
[dependencies] | ||
futures = "0.3" | ||
structopt = "0.3" | ||
tendermint = { version = "0.19.0", path = "../../tendermint" } | ||
tendermint-rpc = { version = "0.19.0", path = "../../rpc", features = [ "websocket-client" ] } | ||
tendermint = { version = "0.20.0", path = "../../tendermint" } | ||
tendermint-rpc = { version = "0.20.0", 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.19.0" | ||
version = "0.20.0" | ||
authors = ["Thane Thomson <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|