-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/refactor-testkit
- Loading branch information
Showing
148 changed files
with
1,899 additions
and
1,608 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
.changelog/unreleased/breaking-changes/1114-refactor-client-relevant-apis.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,3 @@ | ||
- [ibc] Refactor client relevant APIs for improved modularity and allow | ||
standalone ICS-02 integration | ||
([\#1114](https://github.com/cosmos/ibc-rs/issues/1114)) |
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 @@ | ||
- [ibc] Increase minimum supported Rust version to 1.71.1 | ||
([\#1118](https://github.com/cosmos/ibc-rs/issues/1118)) |
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/bug-fixes/1100-fix-tendermint-empty-proof-specs-check.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 @@ | ||
- [ibc-client-tendermint-types] Check ics23 proof specs for empty depth range. | ||
([\#1100](https://github.com/cosmos/ibc-rs/issues/1100)) |
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/improvements/1074-refactor-default-implemetation.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 @@ | ||
- [types] Refactor `Default` implementations with concrete names | ||
([\#1074](https://github.com/cosmos/ibc-rs/issues/1074)) |
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/improvements/1101-use-let-else-over-downcast.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 @@ | ||
- [ibc-primitives] Use `let-else` over `downcast!()` and remove `utils/macros` | ||
module as a result ([\#1118](https://github.com/cosmos/ibc-rs/issues/1118)) |
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/improvements/1120-rm-redundant-shadowing.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 @@ | ||
- [ibc-core] Remove unnecessary shadowing with same value | ||
([\#1120](https://github.com/cosmos/ibc-rs/issues/1120)) |
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 |
---|---|---|
|
@@ -43,7 +43,7 @@ exclude = [ | |
version = "0.50.0" | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.64" | ||
rust-version = "1.71.1" | ||
readme = "README.md" | ||
repository = "https://github.com/cosmos/ibc-rs" | ||
authors = ["Informal Systems <[email protected]>"] | ||
|
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,5 +1,5 @@ | ||
[toolchain] | ||
channel = "nightly-2023-03-09" | ||
channel = "nightly-2024-02-24" | ||
targets = [ | ||
"wasm32-unknown-unknown", | ||
] |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,3 +7,4 @@ disallowed-types = [ | |
disallowed-methods = [ | ||
"std::time::Duration::as_secs_f64", | ||
] | ||
msrv = "1.71.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
Oops, something went wrong.