-
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.
* Fix changelog entry naming Signed-off-by: Thane Thomson <connect@thanethomson.com> * Clean up and format changelog entries Signed-off-by: Thane Thomson <connect@thanethomson.com> * Build changelog for v0.22.0 release Signed-off-by: Thane Thomson <connect@thanethomson.com> * Add date to release in changelog Signed-off-by: Thane Thomson <connect@thanethomson.com> * Bump version to v0.22.0 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Clarify wording in v0.22.0 release summary in changelog Signed-off-by: Thane Thomson <connect@thanethomson.com>
- Loading branch information
1 parent
dd37137
commit 979b7b5
Showing
37 changed files
with
151 additions
and
42 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
.changelog/unreleased/breaking-changes/disable-sled-lightstore.md
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
.changelog/unreleased/improvements/969-derive-eq-signed-header-commit.md
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...hanges/956-light-client-predicates-ibc.md → ...hanges/956-light-client-predicates-ibc.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,4 +1,4 @@ | ||
- `[tendermint_light_client]` The light client verification functionality has | ||
- `[tendermint-light-client]` The light client verification functionality has | ||
been refactored (including breaking changes to the API) such that it can be | ||
more easily used from both `tendermint_light_client` and `ibc-rs` | ||
([#956](https://github.com/informalsystems/tendermint-rs/issues/956)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v0.22.0/breaking-changes/976-disable-sled-lightstore.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,2 @@ | ||
- `[tendermint-light-client]` Disable the `lightstore-sled` feature by default | ||
([#976](https://github.com/informalsystems/tendermint-rs/issues/976)) |
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,2 @@ | ||
- `[tendermint, tendermint-light-client]` Add support for Secp256k1 signatures | ||
([#939](https://github.com/informalsystems/tendermint-rs/issues/939)) |
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...ngelog/unreleased/improvements/968-mbt.md → .changelog/v0.22.0/improvements/968-mbt.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-light-client]` Model-based tests are now disabled | ||
by default and can be enabled through the `mbt` feature | ||
- `[tendermint-light-client]` Model-based tests are now disabled by default and | ||
can be enabled through the `mbt` feature | ||
([#968](https://github.com/informalsystems/tendermint-rs/issues/968)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v0.22.0/improvements/969-derive-eq-signed-header-commit.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,2 @@ | ||
- `[tendermint, tendermint-rpc]` Derive `Eq` on `SignedHeader` and `Commit` | ||
([#969](https://github.com/informalsystems/tendermint-rs/issues/969)) |
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-light-client]` Add `WebSocketClient::new_with_config` to specify | ||
the WebSocket connection settings | ||
([#974](https://github.com/informalsystems/tendermint-rs/issues/974)) |
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,22 @@ | ||
*Sep 23, 2021* | ||
|
||
This release targets numerous issues largely in support of | ||
[ibc-rs](https://github.com/informalsystems/ibc-rs). The major breaking change | ||
in this regard is in the | ||
[API](https://github.com/informalsystems/tendermint-rs/blob/dd371372da58921efe1b48a4dd24a2597225df11/light-client/src/components/verifier.rs#L143) | ||
we use to perform verification in the `tendermint-light-client` crate. | ||
|
||
Toward `no_std` compatibility and flexibility in the way we handle error tracing | ||
and reporting, we have also refactored the entire error handling system in | ||
`tendermint-rs` to make use of | ||
[flex-error](https://github.com/informalsystems/flex-error). | ||
|
||
Finally, we are also (painfully) aware of the fact that our documentation does | ||
not build for this release and apologize for this. We currently still depend on | ||
Prost v0.7.0 and are awaiting a new release of Prost after v0.8.0 that does not | ||
break our builds. We have | ||
[\#978](https://github.com/informalsystems/tendermint-rs/pull/978) open in | ||
preparation for this upgrade and will release a new version of `tendermint-rs` | ||
as soon as a new Prost release is available. | ||
|
||
See below for more specific detail as to what has changed in this release. |
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
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
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