-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update changelog and add summary * chore: update versions * chore: update ibc-query docstring * nit: add new line to Cargo.toml
- Loading branch information
1 parent
513901f
commit ebd3113
Showing
13 changed files
with
75 additions
and
17 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...update-cons-metadata-on-client-upgrade.md → ...update-cons-metadata-on-client-upgrade.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 @@ | ||
- Add missing update in the state, which should include the host's height and | ||
timestamp when a successful client upgrade take place. | ||
([/#913](https://github.com/cosmos/ibc-rs/issues/913)) | ||
([\#913](https://github.com/cosmos/ibc-rs/issues/913)) |
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,10 @@ | ||
This release introduces vital bug fixes, including removal of an incorrect | ||
validation during a Tendermint client update and the addition of a missing state | ||
update during a successful client upgrade ensuring the inclusion of the host's | ||
height and timestamp in the store. | ||
|
||
Additionally, it eliminates the `safe-regex` dependency, and restructures IBC | ||
query implementations under the previous `grpc` feature flag and moves it to a | ||
separate crate called as `ibc-query`. | ||
|
||
There are consensus-breaking 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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
"default": true, | ||
"MD013": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md013---line-length | ||
"MD024": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md024---multiple-headings-with-the-same-content | ||
"MD033": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md033---inline-html | ||
"MD036": false, // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md036---emphasis-used-instead-of-a-heading | ||
"MD041": false // https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md041---first-line-in-a-file-should-be-a-top-level-heading | ||
} |
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,7 +1,7 @@ | ||
# ibc-query | ||
|
||
This crate provides a set of utility traits and implementations for querying the | ||
state of an IBC-enabled chain. | ||
state of an `ibc-rs` enabled chain. | ||
|
||
Implementations contains essential IBC query methods and gRPC query service | ||
for the IBC core client, connection, and channel components. | ||
Implementations contains essential IBC query methods and gRPC query services for | ||
each of the IBC core client, connection, and channel layers. |
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