Skip to content

Commit

Permalink
Release v0.48.2
Browse files Browse the repository at this point in the history
chore: update changelog + summary

deps: bump versions to v0.48.2
  • Loading branch information
Farhad-Shabani committed Dec 22, 2023
1 parent 3ed6023 commit 63b0de8
Show file tree
Hide file tree
Showing 9 changed files with 101 additions and 77 deletions.

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 @@ -63,33 +63,33 @@ subtle-encoding = { version = "0.5", default-features = false }
time = { version = ">=0.3.0, <0.3.31", 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.38.0", default-features = false }
ics23 = { version = "0.11", default-features = false }
Expand Down
48 changes: 24 additions & 24 deletions ci/cw-check/Cargo.lock

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

Loading

0 comments on commit 63b0de8

Please sign in to comment.