From 47f4e508162c0bfbee454718e2668e19c74016ff Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Thu, 5 Sep 2024 21:31:18 +0200 Subject: [PATCH] Release v0.48.0 (#235) --- .../breaking-changes/226-tendermint-proto-wkt.md | 0 .../breaking-changes/227-tendermint-proto-0.39.md | 0 .changelog/v0.48.0/summary.md | 3 +++ CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- 5 files changed, 19 insertions(+), 1 deletion(-) rename .changelog/{unreleased => v0.48.0}/breaking-changes/226-tendermint-proto-wkt.md (100%) rename .changelog/{unreleased => v0.48.0}/breaking-changes/227-tendermint-proto-0.39.md (100%) create mode 100644 .changelog/v0.48.0/summary.md diff --git a/.changelog/unreleased/breaking-changes/226-tendermint-proto-wkt.md b/.changelog/v0.48.0/breaking-changes/226-tendermint-proto-wkt.md similarity index 100% rename from .changelog/unreleased/breaking-changes/226-tendermint-proto-wkt.md rename to .changelog/v0.48.0/breaking-changes/226-tendermint-proto-wkt.md diff --git a/.changelog/unreleased/breaking-changes/227-tendermint-proto-0.39.md b/.changelog/v0.48.0/breaking-changes/227-tendermint-proto-0.39.md similarity index 100% rename from .changelog/unreleased/breaking-changes/227-tendermint-proto-0.39.md rename to .changelog/v0.48.0/breaking-changes/227-tendermint-proto-0.39.md diff --git a/.changelog/v0.48.0/summary.md b/.changelog/v0.48.0/summary.md new file mode 100644 index 00000000..1508c0bf --- /dev/null +++ b/.changelog/v0.48.0/summary.md @@ -0,0 +1,3 @@ +This release updates `tendermint-proto` to v0.39 and now uses +the `google.protobuf.{Duration, Timestamp}` Protobuf messages +exposed by `tendermint-proto` instead of defining and bundling our own. diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f5ee3a4..6310232c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # CHANGELOG +## v0.48.0 + +*September 5th, 2024* + +This release updates `tendermint-proto` to v0.39 and now uses +the `google.protobuf.{Duration, Timestamp}` Protobuf messages +exposed by `tendermint-proto` instead of defining and bundling our own. + +### BREAKING CHANGES + +- Update `tendermint-proto` to v0.39 ([\#227](https://github.com/cosmos/ibc-proto-rs/pull/227)) +- Use the `google.protobuf.{Duration, Timestamp}` Protobuf messages + exposed by `tendermint-proto` instead of defining and bundling our own. + ([\#226](https://github.com/cosmos/ibc-proto-rs/pull/226)) + ## v0.47.1 *September 3rd, 2024* diff --git a/Cargo.toml b/Cargo.toml index ccfe7410..7b5a868c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-proto" -version = "0.47.1" +version = "0.48.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0"