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.56.0 #1377

Merged
merged 3 commits into from
Nov 15, 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
5 changes: 5 additions & 0 deletions .changelog/v0.56.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
This release upgrades the `ibc-proto` and `tendermint-rs` dependencies to
`v0.51.1` and `v0.40.0`, respectively. It also updates the minimum supported
Rust version (MSRV) to `1.75.0`.

There are no consensus-breaking changes in this release.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# CHANGELOG

## v0.56.0

*November 15, 2024*

This release upgrades the `ibc-proto` and `tendermint-rs` dependencies to
`v0.51.1` and `v0.40.0`, respectively. It also updates the minimum supported
Rust version (MSRV) to `1.75.0`.

There are no consensus-breaking changes in this release.

### BREAKING CHANGES

- [ibc] Update `ibc-proto` to `v0.51.1` and `tendermint` to `v0.40.0`.
([\#1375](https://github.com/cosmos/ibc-rs/pull/1375))
- [ibc] Update MSRV to `1.75.0`.
([\#1375](https://github.com/cosmos/ibc-rs/pull/1375))

### IMPROVEMENTS

- [ibc-apps] Relax timeout check during `MsgTransfer` proto to domain
conversions ([#1362](https://github.com/cosmos/ibc-rs/issues/1362)).
- [ibc-app-nft-transfer] Preallocate `Vec` to avoid reallocation of memory
([\#1374](https://github.com/cosmos/ibc-rs/pull/1374)).

## v0.55.1

*October 17, 2024*
Expand Down
62 changes: 31 additions & 31 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ exclude = [
]

[workspace.package]
version = "0.55.1"
version = "0.56.0"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.75.0"
Expand All @@ -68,41 +68,41 @@ subtle-encoding = { version = "0.5", default-features = false }
hex = { version = "0.4.3", default-features = false }

# ibc dependencies
ibc = { version = "0.55.1", path = "./ibc", default-features = false }
ibc-core = { version = "0.55.1", path = "./ibc-core", default-features = false }
ibc-clients = { version = "0.55.1", path = "./ibc-clients", default-features = false }
ibc-apps = { version = "0.55.1", path = "./ibc-apps", default-features = false }
ibc-primitives = { version = "0.55.1", path = "./ibc-primitives", default-features = false }
ibc-testkit = { version = "0.55.1", path = "./ibc-testkit", default-features = false }
ibc = { version = "0.56.0", path = "./ibc", default-features = false }
ibc-core = { version = "0.56.0", path = "./ibc-core", default-features = false }
ibc-clients = { version = "0.56.0", path = "./ibc-clients", default-features = false }
ibc-apps = { version = "0.56.0", path = "./ibc-apps", default-features = false }
ibc-primitives = { version = "0.56.0", path = "./ibc-primitives", default-features = false }
ibc-testkit = { version = "0.56.0", path = "./ibc-testkit", default-features = false }

ibc-derive = { version = "0.9.0", path = "./ibc-derive" }
ibc-derive = { version = "0.10.0", path = "./ibc-derive" }

ibc-core-client = { version = "0.55.1", path = "./ibc-core/ics02-client", default-features = false }
ibc-core-connection = { version = "0.55.1", path = "./ibc-core/ics03-connection", default-features = false }
ibc-core-channel = { version = "0.55.1", path = "./ibc-core/ics04-channel", default-features = false }
ibc-core-host = { version = "0.55.1", path = "./ibc-core/ics24-host", default-features = false }
ibc-core-handler = { version = "0.55.1", path = "./ibc-core/ics25-handler", default-features = false }
ibc-core-router = { version = "0.55.1", path = "./ibc-core/ics26-routing", default-features = false }
ibc-query = { version = "0.55.1", path = "./ibc-query", default-features = false }
ibc-core-client = { version = "0.56.0", path = "./ibc-core/ics02-client", default-features = false }
ibc-core-connection = { version = "0.56.0", path = "./ibc-core/ics03-connection", default-features = false }
ibc-core-channel = { version = "0.56.0", path = "./ibc-core/ics04-channel", default-features = false }
ibc-core-host = { version = "0.56.0", path = "./ibc-core/ics24-host", default-features = false }
ibc-core-handler = { version = "0.56.0", path = "./ibc-core/ics25-handler", default-features = false }
ibc-core-router = { version = "0.56.0", path = "./ibc-core/ics26-routing", default-features = false }
ibc-query = { version = "0.56.0", path = "./ibc-query", default-features = false }

ibc-client-tendermint = { version = "0.55.1", path = "./ibc-clients/ics07-tendermint", default-features = false }
ibc-client-tendermint = { version = "0.56.0", path = "./ibc-clients/ics07-tendermint", default-features = false }

ibc-app-transfer = { version = "0.55.1", path = "./ibc-apps/ics20-transfer", default-features = false }
ibc-app-nft-transfer = { version = "0.55.1", path = "./ibc-apps/ics721-nft-transfer", default-features = false }
ibc-app-transfer = { version = "0.56.0", path = "./ibc-apps/ics20-transfer", default-features = false }
ibc-app-nft-transfer = { version = "0.56.0", path = "./ibc-apps/ics721-nft-transfer", default-features = false }

ibc-core-client-context = { version = "0.55.1", path = "./ibc-core/ics02-client/context", default-features = false }
ibc-core-client-types = { version = "0.55.1", path = "./ibc-core/ics02-client/types", default-features = false }
ibc-core-channel-types = { version = "0.55.1", path = "./ibc-core/ics04-channel/types", default-features = false }
ibc-core-connection-types = { version = "0.55.1", path = "./ibc-core/ics03-connection/types", default-features = false }
ibc-core-commitment-types = { version = "0.55.1", path = "./ibc-core/ics23-commitment/types", default-features = false }
ibc-core-host-cosmos = { version = "0.55.1", path = "./ibc-core/ics24-host/cosmos", default-features = false }
ibc-core-host-types = { version = "0.55.1", path = "./ibc-core/ics24-host/types", default-features = false }
ibc-core-handler-types = { version = "0.55.1", path = "./ibc-core/ics25-handler/types", default-features = false }
ibc-core-router-types = { version = "0.55.1", path = "./ibc-core/ics26-routing/types", default-features = false }
ibc-client-tendermint-types = { version = "0.55.1", path = "./ibc-clients/ics07-tendermint/types", default-features = false }
ibc-client-wasm-types = { version = "0.55.1", path = "./ibc-clients/ics08-wasm/types", default-features = false }
ibc-app-transfer-types = { version = "0.55.1", path = "./ibc-apps/ics20-transfer/types", default-features = false }
ibc-app-nft-transfer-types = { version = "0.55.1", path = "./ibc-apps/ics721-nft-transfer/types", default-features = false }
ibc-core-client-context = { version = "0.56.0", path = "./ibc-core/ics02-client/context", default-features = false }
ibc-core-client-types = { version = "0.56.0", path = "./ibc-core/ics02-client/types", default-features = false }
ibc-core-channel-types = { version = "0.56.0", path = "./ibc-core/ics04-channel/types", default-features = false }
ibc-core-connection-types = { version = "0.56.0", path = "./ibc-core/ics03-connection/types", default-features = false }
ibc-core-commitment-types = { version = "0.56.0", path = "./ibc-core/ics23-commitment/types", default-features = false }
ibc-core-host-cosmos = { version = "0.56.0", path = "./ibc-core/ics24-host/cosmos", default-features = false }
ibc-core-host-types = { version = "0.56.0", path = "./ibc-core/ics24-host/types", default-features = false }
ibc-core-handler-types = { version = "0.56.0", path = "./ibc-core/ics25-handler/types", default-features = false }
ibc-core-router-types = { version = "0.56.0", path = "./ibc-core/ics26-routing/types", default-features = false }
ibc-client-tendermint-types = { version = "0.56.0", path = "./ibc-clients/ics07-tendermint/types", default-features = false }
ibc-client-wasm-types = { version = "0.56.0", path = "./ibc-clients/ics08-wasm/types", default-features = false }
ibc-app-transfer-types = { version = "0.56.0", path = "./ibc-apps/ics20-transfer/types", default-features = false }
ibc-app-nft-transfer-types = { version = "0.56.0", path = "./ibc-apps/ics721-nft-transfer/types", default-features = false }

ibc-proto = { version = "0.51.1", default-features = false }

Expand Down
42 changes: 21 additions & 21 deletions ci/cw-check/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading