-
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.
* Prepare changelog Signed-off-by: Thane Thomson <[email protected]> * Build changelog Signed-off-by: Thane Thomson <[email protected]> * Optimize release script Signed-off-by: Thane Thomson <[email protected]> * Bump to v0.23.0 Signed-off-by: Thane Thomson <[email protected]>
- Loading branch information
1 parent
5bf6bae
commit 858b577
Showing
28 changed files
with
98 additions
and
85 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
- `[tendermint-rpc]` Add support for the `/block_search` RPC endpoint. See | ||
<https://docs.tendermint.com/master/rpc/\#/Info/block_search> for details | ||
([#832](https://github.com/informalsystems/tendermint-rs/issues/832)) |
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,10 @@ | ||
*Oct 27, 2021* | ||
|
||
The main changes in this release involve upgrading to [Prost | ||
v0.9](https://github.com/tokio-rs/prost/releases/tag/v0.9.0) and some | ||
foundational changes to prepare for `no_std` support for some of our crates. | ||
|
||
One of the main `no_std`-related changes in this release was to break out | ||
configuration-related data structures from the `tendermint` crate into their own | ||
crate (`tendermint-config`) as these structures depend on other crates which do | ||
not yet support `no_std`. |
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.0-internal" | ||
version = "0.23.0" | ||
authors = ["Informal Systems <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -25,12 +25,15 @@ default = ["flex-error/std", "flex-error/eyre_tracer"] | |
client = [] | ||
echo-app = [] | ||
kvstore-app = [] | ||
binary = [ "structopt", "tracing-subscriber" ] | ||
binary = [ | ||
"structopt", | ||
"tracing-subscriber/fmt", | ||
] | ||
|
||
[dependencies] | ||
bytes = { version = "1.0", default-features = false } | ||
prost = { version = "0.9", default-features = false } | ||
tendermint-proto = { version = "0.23.0-internal", default-features = false, path = "../proto" } | ||
tendermint-proto = { version = "0.23.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
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.0-internal" | ||
version = "0.23.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.23.0-internal" | ||
version = "0.23.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
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.0-internal" | ||
version = "0.23.0" | ||
authors = ["Informal Systems <[email protected]>"] | ||
edition = "2018" | ||
readme = "README.md" | ||
|
@@ -16,7 +16,7 @@ description = """ | |
""" | ||
|
||
[dependencies] | ||
tendermint = { version = "0.23.0-internal", path = "../tendermint" } | ||
tendermint = { version = "0.23.0", path = "../tendermint" } | ||
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.0-internal" | ||
version = "0.23.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.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" ] } | ||
tendermint = { version = "0.23.0", path = "../../tendermint" } | ||
tendermint-config = { version = "0.23.0", path = "../../config" } | ||
tendermint-rpc = { version = "0.23.0", path = "../../rpc", features = [ "websocket-client" ] } | ||
tracing = "0.1" | ||
tracing-subscriber = "0.2" | ||
tokio = { version = "1", features = ["full"] } |
Oops, something went wrong.