From 9e87819bf686d2fd93d1e338943c9721fc0f3e50 Mon Sep 17 00:00:00 2001 From: Luca Joss <43531661+ljoss17@users.noreply.github.com> Date: Wed, 14 Jun 2023 09:39:23 +0200 Subject: [PATCH] Release `v0.32.0` (#111) * release 'ibc-proto-rs' v0.32.0 * Apply suggestions from code review --------- Co-authored-by: Romain Ruetschi --- .../bug-fixes/106-downgrade-borsh-version.md | 2 ++ .../improvements/106-update-ibc-go-6-2-0.md | 2 ++ .changelog/v0.32.0/summary.md | 5 +++++ CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 2 +- 5 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 .changelog/v0.32.0/bug-fixes/106-downgrade-borsh-version.md create mode 100644 .changelog/v0.32.0/improvements/106-update-ibc-go-6-2-0.md create mode 100644 .changelog/v0.32.0/summary.md diff --git a/.changelog/v0.32.0/bug-fixes/106-downgrade-borsh-version.md b/.changelog/v0.32.0/bug-fixes/106-downgrade-borsh-version.md new file mode 100644 index 00000000..c9b2c453 --- /dev/null +++ b/.changelog/v0.32.0/bug-fixes/106-downgrade-borsh-version.md @@ -0,0 +1,2 @@ +- Downgrade `borsh` version from `v0.10.0` to `v0.9` + ([#106](https://github.com/cosmos/ibc-proto-rs/pull/104)) \ No newline at end of file diff --git a/.changelog/v0.32.0/improvements/106-update-ibc-go-6-2-0.md b/.changelog/v0.32.0/improvements/106-update-ibc-go-6-2-0.md new file mode 100644 index 00000000..bd975e81 --- /dev/null +++ b/.changelog/v0.32.0/improvements/106-update-ibc-go-6-2-0.md @@ -0,0 +1,2 @@ +- Update `ibc-go` commit from `v5.1.0` to `v6.2.0` + ([#106](https://github.com/cosmos/ibc-proto-rs/issues/106)) \ No newline at end of file diff --git a/.changelog/v0.32.0/summary.md b/.changelog/v0.32.0/summary.md new file mode 100644 index 00000000..82c0f156 --- /dev/null +++ b/.changelog/v0.32.0/summary.md @@ -0,0 +1,5 @@ +*June 14th, 2023* + +This release updates the `ibc-go` proto files from version `v5.1.0` to `v6.2.0` which includes the ICA Protobuf definitions. + +The version of `borsh` has been downgraded from `v0.10.0` to `v0.9` in order to match `near-sdk-rs` and Solana smart contract frame `anchor`. diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cbf4c7d..a5ce055e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # CHANGELOG +## v0.32.0 + +*June 14th, 2023* + +This release updates the `ibc-go` proto files from version `v5.1.0` to `v6.2.0` which includes the ICA Protobuf definitions. + +The version of `borsh` has been downgraded from `v0.10.0` to `v0.9` in order to match `near-sdk-rs` and Solana smart contract frame `anchor`. + +### BUG FIXES + +- Downgrade `borsh` version from `v0.10.0` to `v0.9` + ([#106](https://github.com/cosmos/ibc-proto-rs/pull/104)) + +### IMPROVEMENTS + +- Update `ibc-go` commit from `v5.1.0` to `v6.2.0` + ([#106](https://github.com/cosmos/ibc-proto-rs/issues/106)) + ## v0.31.0 *May 31st, 2023* diff --git a/Cargo.toml b/Cargo.toml index 9b676bd0..c480022d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-proto" -version = "0.31.0" +version = "0.32.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0"