Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.51.0 #1141

Merged
merged 9 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changelog/v0.51.0/summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ In addition, this version fixes a bug where the consensus state is incorrectly s

Furthermore, a set of new host keys is added. This makes `ibc-rs` more consistent with the storage access of `ibc-go`. Also, access to client update information is merged into a single method; instead of individual details.

This release updates the `ibc-proto-rs` dependency to `v0.42.2`. This takes account of the updated `MsgUpdateClient` and deprecates `MsgSubmitMisbehaviour`.
This release updates the `ibc-proto-rs` dependency to `v0.42.2`. This takes account of the updated `MsgUpdateClient` and deprecates `MsgSubmitMisbehaviour`. Also, `ibc-derive` dependency is updated to `v0.6.1`.

Finally, the minimum supported Rust version is corrected and updated to `1.71.1`.

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:

gh-release:
if: github.ref_type == 'tag'
needs: publish
rnbguy marked this conversation as resolved.
Show resolved Hide resolved
name: Create GitHub release
runs-on: ubuntu-latest
permissions:
Expand Down
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@

## v0.51.0

*March 22, 2024*
*March 26, 2024*

This release introduces a few changes for better customizability. The main one is modularizing ICS-24, ICS-02, and ICS-07 trait implementations. This change empowers developers to write Rust light clients succinctly in a smart-contract context like CosmWasm. Also, the default Tendermint client state verifier is now detached to support custom verifiers, if required.

In addition, this version fixes a bug where the consensus state is incorrectly stored when a header with an older height is submitted.

Furthermore, a set of new host keys is added. This makes `ibc-rs` more consistent with the storage access of `ibc-go`. Also, access to client update information is merged into a single method; instead of individual details.

This release updates the `ibc-proto-rs` dependency to `v0.42.2`. This takes account of the updated `MsgUpdateClient` and deprecates `MsgSubmitMisbehaviour`.

This release updates the `ibc-proto-rs` dependency to `v0.42.2`. This takes account of the updated `MsgUpdateClient` and deprecates `MsgSubmitMisbehaviour`. Also, `ibc-derive` dependency is updated to `v0.6.1`.
Finally, the minimum supported Rust version is corrected and updated to `1.71.1`.

There are no consensus-breaking changes.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ibc-core = { version = "0.51.0", path = "./ibc-core", default-feature
ibc-clients = { version = "0.51.0", path = "./ibc-clients", default-features = false }
ibc-apps = { version = "0.51.0", path = "./ibc-apps", default-features = false }
ibc-primitives = { version = "0.51.0", path = "./ibc-primitives", default-features = false }
ibc-derive = { version = "0.6.0", path = "./ibc-derive" }
ibc-derive = { version = "0.6.1", path = "./ibc-derive" }
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we add in our changelog that ibc-derive is updated?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Haven't been doing so, but good to include.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


ibc-core-client = { version = "0.51.0", path = "./ibc-core/ics02-client", default-features = false }
ibc-core-connection = { version = "0.51.0", path = "./ibc-core/ics03-connection", default-features = false }
Expand Down
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,14 @@ community contributions!

## Community calls

We run monthly community calls to update the community with current our
direction and gather feedback on what to work on next. The community calls are
also a platform for you to update everyone else with what you're working on, and
find opportunities to collaborate.

Please join the [Google group](https://groups.google.com/g/ibc-rs-community) to
receive a calendar invitation for the monthly meeting.
The IBC-rs community calls are now part of the IBC Core community calls. During
these calls, we update the community on our current direction and gather
feedback on what to work on next. The community calls are also a platform for
you to update everyone else on what you're working on and find opportunities to
collaborate.

Please join the [Google group](https://groups.google.com/g/ibc-community) to
receive a calendar invitation to the monthly meetings.

## Versioning

Expand Down
20 changes: 11 additions & 9 deletions docs/architecture/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ To suggest an ADR, please make use of the [ADR template](./adr-template.md) prov

## Table of Contents

| ADR \# | Description | Status |
|----------------------------------------------------|-------------------------------------------------------|----------|
| [001](./adr-001-handler-implementation.md) | IBC handlers implementation | Accepted |
| [002](./adr-002-error.md) | Error Management | Accepted |
| [003](./adr-003-ics20-implementation.md) | ICS20 implementation | Accepted |
| [004](./adr-004-light-client-crates-extraction.md) | Light client crates extraction | Accepted |
| [005](./adr-005-handlers-redesign.md) | Handlers validation and execution separation | Accepted |
| [006](./adr-006-upgrade-client-implementation.md) | Chain and client upgradability | Accepted |
| [007](./adr-007-light-client-contexts.md) | Light client contexts | Accepted |
| ADR \# | Description | Status |
| ------------------------------------------------------- | -------------------------------------------- | -------- |
| [001](./adr-001-handler-implementation.md) | IBC handlers implementation | Accepted |
| [002](./adr-002-error.md) | Error Management | Accepted |
| [003](./adr-003-ics20-implementation.md) | ICS20 implementation | Accepted |
| [004](./adr-004-light-client-crates-extraction.md) | Light client crates extraction | Accepted |
| [005](./adr-005-handlers-redesign.md) | Handlers validation and execution separation | Accepted |
| [006](./adr-006-upgrade-client-implementation.md) | Chain and client upgradability | Accepted |
| [007](./adr-007-light-client-contexts.md) | Light client contexts | Accepted |
| [008](./adr-008-restructure-ibc-crate.md) | Restructure `ibc` crate | Accepted |
| [010](./adr-010-enable-standalone-ics02-integration.md) | Enable standalone `ics-02` integration | Accepted |
2 changes: 1 addition & 1 deletion docs/architecture/adr-008-restructure-ibc-crate.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ the release process as well.

## **Status**

Proposed
Accepted

## **Consequences**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Status

Proposed
Accepted

## Context

Expand Down
2 changes: 1 addition & 1 deletion ibc-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-derive"
version = "0.6.0"
version = "0.6.1"
license = { workspace = true }
repository = { workspace = true }
edition = { workspace = true }
Expand Down
Loading