Skip to content

Commit

Permalink
Release v0.48.2 (#1018)
Browse files Browse the repository at this point in the history
* fix: packet sequence in Timeout handlers should be encoded in big-endian (#1004)

* fix: encode package sequence into big endian bytes

* Fix this issue in `to_vec` method.

* fix: recursive call in connection `State` conversion to `i32` (#1010)

* fix state conversion recursive call

* replace match with casting

Co-authored-by: Michal Nazarewicz <[email protected]>
Signed-off-by: Dhruv D Jain <[email protected]>

* chore: add unclog

* nit

---------

Signed-off-by: Dhruv D Jain <[email protected]>
Co-authored-by: Michal Nazarewicz <[email protected]>
Co-authored-by: Farhad Shabani <[email protected]>

* Release v0.48.2

chore: update changelog + summary

deps: bump versions to v0.48.2

---------

Signed-off-by: Dhruv D Jain <[email protected]>
Co-authored-by: Yuanchao Sun <[email protected]>
Co-authored-by: Dhruv D Jain <[email protected]>
Co-authored-by: Michal Nazarewicz <[email protected]>
  • Loading branch information
4 people authored Jan 2, 2024
1 parent 7c4a428 commit 2be0344
Show file tree
Hide file tree
Showing 9 changed files with 245 additions and 184 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 @@ -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

0 comments on commit 2be0344

Please sign in to comment.