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 6 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
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
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
Member 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
Member 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 biweekly Tuesday meetings.
rnbguy marked this conversation as resolved.
Show resolved Hide resolved

## 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 | Proposed |
| [010](./adr-010-enable-standalone-ics02-integration.md) | Enable standalone `ics-02` integration | Proposed |
Farhad-Shabani marked this conversation as resolved.
Show resolved Hide resolved
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