From d89b9bf7cb200e1cd577839cb90addf70c47534e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Laferri=C3=A8re?= Date: Wed, 19 Oct 2022 09:58:00 -0400 Subject: [PATCH] release v0.21.0 (#29) --- .changelog/config.toml | 1 + .changelog/unreleased/.gitkeep | 0 .../v0.21.0/breaking-changes/24-update-ibc-sdk.md | 2 ++ .../breaking-changes/26-tendermint-proto.md | 2 ++ .changelog/v0.21.0/summary.md | 1 + CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 8 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 .changelog/config.toml create mode 100644 .changelog/unreleased/.gitkeep create mode 100644 .changelog/v0.21.0/breaking-changes/24-update-ibc-sdk.md create mode 100644 .changelog/v0.21.0/breaking-changes/26-tendermint-proto.md create mode 100644 .changelog/v0.21.0/summary.md create mode 100644 CHANGELOG.md diff --git a/.changelog/config.toml b/.changelog/config.toml new file mode 100644 index 00000000..bcc6d3bc --- /dev/null +++ b/.changelog/config.toml @@ -0,0 +1 @@ +project_url = 'https://github.com/cosmos/ibc-proto-rs' diff --git a/.changelog/unreleased/.gitkeep b/.changelog/unreleased/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/.changelog/v0.21.0/breaking-changes/24-update-ibc-sdk.md b/.changelog/v0.21.0/breaking-changes/24-update-ibc-sdk.md new file mode 100644 index 00000000..cf854991 --- /dev/null +++ b/.changelog/v0.21.0/breaking-changes/24-update-ibc-sdk.md @@ -0,0 +1,2 @@ +- Update protos to IBC-Go v5.0.0 and Cosmos SDK v0.46.1 + ([#24](https://github.com/cosmos/ibc-proto-rs/issues/24)) \ No newline at end of file diff --git a/.changelog/v0.21.0/breaking-changes/26-tendermint-proto.md b/.changelog/v0.21.0/breaking-changes/26-tendermint-proto.md new file mode 100644 index 00000000..4d410da0 --- /dev/null +++ b/.changelog/v0.21.0/breaking-changes/26-tendermint-proto.md @@ -0,0 +1,2 @@ +- Update tendermint-proto requirement from =0.23.9 to =0.25.0 + ([#26](https://github.com/cosmos/ibc-proto-rs/issues/26)) \ No newline at end of file diff --git a/.changelog/v0.21.0/summary.md b/.changelog/v0.21.0/summary.md new file mode 100644 index 00000000..e2f2b6b9 --- /dev/null +++ b/.changelog/v0.21.0/summary.md @@ -0,0 +1 @@ +This is the first release of ibc-proto with its own changelog. For past releases, please check the [Hermes](https://github.com/informalsystems/hermes/blob/c34b354e310da7f59631ae315ea22c5f2b420d44/CHANGELOG.md) changelog. diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..58696e20 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +# CHANGELOG + +## v0.21.0 + +*October 19, 2022* + +This is the first release of ibc-proto with its own changelog. For past releases, please check the [Hermes](https://github.com/informalsystems/hermes/blob/c34b354e310da7f59631ae315ea22c5f2b420d44/CHANGELOG.md) changelog. + +### BREAKING CHANGES + +- Update protos to IBC-Go v5.0.0 and Cosmos SDK v0.46.1 + ([#24](https://github.com/cosmos/ibc-proto-rs/issues/24)) +- Update tendermint-proto requirement from =0.23.9 to =0.25.0 + ([#26](https://github.com/cosmos/ibc-proto-rs/issues/26)) diff --git a/Cargo.toml b/Cargo.toml index 9028716f..0bd53687 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-proto" -version = "0.20.1" +version = "0.21.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index d0847bee..1ffaca28 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ #![allow(clippy::large_enum_variant, clippy::derive_partial_eq_without_eq)] #![allow(rustdoc::bare_urls)] #![forbid(unsafe_code)] -#![doc(html_root_url = "https://docs.rs/ibc-proto/0.20.1")] +#![doc(html_root_url = "https://docs.rs/ibc-proto/0.21.0")] pub mod google; pub mod protobuf;