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.48.2 #1018

Merged
merged 4 commits into from
Jan 2, 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

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- `[ibc-core-host-types]` Encode packet sequence into a big endian bytes.
([\#1004](https://github.com/cosmos/ibc-rs/pull/1004))
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- `[ibc-core-connection-types]` Fix recursive call in connection `State`
conversion to `i32` ([\#1010](https://github.com/cosmos/ibc-rs/issues/1010))
6 changes: 6 additions & 0 deletions .changelog/v0.48.2/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This patch release resolves two issues. It corrects the packet sequence number
encoding within Timeout message handlers to align with the big-endian format and
addresses a recursive call error during the conversion from connection `State`
to `i32`.

There are no consensus-breaking changes.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# CHANGELOG

## v0.48.2

*December 22, 2023*

This patch release resolves two issues. It corrects the packet sequence number
encoding within Timeout message handlers to align with the big-endian format and
addresses a recursive call error during the conversion from connection `State`
to `i32`.

There are no consensus-breaking changes.

### BUG FIXES

- `[ibc-core-host-types]` Encode packet sequence into a big endian bytes.
([\#1004](https://github.com/cosmos/ibc-rs/pull/1004))
- `[ibc-core-connection-types]` Fix recursive call in connection `State`
conversion to `i32` ([\#1010](https://github.com/cosmos/ibc-rs/issues/1010))

## v0.48.1

*November 27, 2023*
Expand Down
50 changes: 25 additions & 25 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ exclude = [
]

[workspace.package]
version = "0.48.1"
version = "0.48.2"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.64"
Expand All @@ -58,33 +58,33 @@ serde_json = { package = "serde-json-wasm", version = "1.0.0" , default
subtle-encoding = { version = "0.5", default-features = false }

# ibc dependencies
ibc = { version = "0.48.1", path = "./ibc", default-features = false }
ibc-core = { version = "0.48.1", path = "./ibc-core", default-features = false }
ibc-clients = { version = "0.48.1", path = "./ibc-clients", default-features = false }
ibc-apps = { version = "0.48.1", path = "./ibc-apps", default-features = false }
ibc-primitives = { version = "0.48.1", path = "./ibc-primitives", default-features = false }
ibc = { version = "0.48.2", path = "./ibc", default-features = false }
ibc-core = { version = "0.48.2", path = "./ibc-core", default-features = false }
ibc-clients = { version = "0.48.2", path = "./ibc-clients", default-features = false }
ibc-apps = { version = "0.48.2", path = "./ibc-apps", default-features = false }
ibc-primitives = { version = "0.48.2", path = "./ibc-primitives", default-features = false }
ibc-derive = { version = "0.4.0", path = "./ibc-derive" }

ibc-core-client = { version = "0.48.1", path = "./ibc-core/ics02-client", default-features = false }
ibc-core-connection = { version = "0.48.1", path = "./ibc-core/ics03-connection", default-features = false }
ibc-core-channel = { version = "0.48.1", path = "./ibc-core/ics04-channel", default-features = false }
ibc-core-host = { version = "0.48.1", path = "./ibc-core/ics24-host", default-features = false }
ibc-core-handler = { version = "0.48.1", path = "./ibc-core/ics25-handler", default-features = false }
ibc-core-router = { version = "0.48.1", path = "./ibc-core/ics26-routing", default-features = false }
ibc-client-tendermint = { version = "0.48.1", path = "./ibc-clients/ics07-tendermint", default-features = false }
ibc-app-transfer = { version = "0.48.1", path = "./ibc-apps/ics20-transfer", default-features = false }
ibc-core-client = { version = "0.48.2", path = "./ibc-core/ics02-client", default-features = false }
ibc-core-connection = { version = "0.48.2", path = "./ibc-core/ics03-connection", default-features = false }
ibc-core-channel = { version = "0.48.2", path = "./ibc-core/ics04-channel", default-features = false }
ibc-core-host = { version = "0.48.2", path = "./ibc-core/ics24-host", default-features = false }
ibc-core-handler = { version = "0.48.2", path = "./ibc-core/ics25-handler", default-features = false }
ibc-core-router = { version = "0.48.2", path = "./ibc-core/ics26-routing", default-features = false }
ibc-client-tendermint = { version = "0.48.2", path = "./ibc-clients/ics07-tendermint", default-features = false }
ibc-app-transfer = { version = "0.48.2", path = "./ibc-apps/ics20-transfer", default-features = false }

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

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

Expand Down
Loading
Loading