-
Notifications
You must be signed in to change notification settings - Fork 97
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 farhad/interchain-accounts
- Loading branch information
Showing
92 changed files
with
2,941 additions
and
1,462 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
.changelog/v0.42.0/breaking-changes/296-static-clientstate.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 @@ | ||
- Implement ADR 7, where `ClientState` objects are now statically dispatched instead | ||
of dynamically dispatched. | ||
([#296](https://github.com/cosmos/ibc-rs/issues/296)) |
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
...v0.42.0/breaking-changes/721-dont-take-ownership-of-argument-in-chainid::new.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 @@ | ||
- Revise the `ChainId::new` method so that rather than taking String argument | ||
it borrows a str. ([#721](https://github.com/cosmos/ibc-rs/issues/721)) |
3 changes: 3 additions & 0 deletions
3
.changelog/v0.42.0/breaking-changes/739-modify-msg-upgrade-client.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 @@ | ||
- Modify `MsgUpgradeClient` struct to utilize `CommitmentProofBytes` and | ||
apply some refinements around upgrade client methods and impls respectively. | ||
([#739](https://github.com/cosmos/ibc-rs/issues/739)) |
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 @@ | ||
Remove Router::has_route | ||
([\#503](https://github.com/cosmos/ibc-rs/issues/503)) |
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 @@ | ||
- Remove Header trait ([#617](https://github.com/cosmos/ibc-rs/issues/617)) |
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 @@ | ||
- Deny use of unwrap() throughout the crate | ||
([#655](https://github.com/cosmos/ibc-rs/issues/655)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v0.42.0/improvement/729-remove-tendermint-chain-id-dep.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 @@ | ||
- ChainId should serialize itself without using tendermint::chain::Id | ||
([#729](https://github.com/cosmos/ibc-rs/issues/729)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v0.42.0/improvement/731-use-FromStr-Construct-ClientType.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 @@ | ||
- feat: use FromStr in client_type functions to construct ClientType | ||
([#731](https://github.com/cosmos/ibc-rs/pull/731)) |
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 @@ | ||
This release primarily implements ADR 7. It also includes a number of miscellaneous improvements. | ||
|
||
There are no consensus-breaking changes. |
This file was deleted.
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
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 |
---|---|---|
|
@@ -4,8 +4,9 @@ resolver = "2" | |
|
||
members = [ | ||
"crates/ibc", | ||
"crates/ibc-derive", | ||
] | ||
|
||
exclude = [ | ||
"ci/no-std-check", | ||
] | ||
] |
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
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,17 @@ | ||
[package] | ||
name = "ibc-derive" | ||
version = "0.1.0" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
description = "Macros implementation of #[derive(ClientState)] and #[derive(ConsensusState)]" | ||
repository = "https://github.com/cosmos/ibc-rs" | ||
edition = "2021" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
syn = "2" | ||
proc-macro2 = "1" | ||
quote = "1" | ||
darling = "0.20" |
Oops, something went wrong.