From 9bdf97d1250d57f6412a9d14efac21392395fb04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Laferri=C3=A8re?= Date: Tue, 10 Jan 2023 12:12:38 -0500 Subject: [PATCH] Release v0.24.1 (#51) * unclog release * bump versions --- .../features/47-add-borsh-and-codec-for-any.md | 0 .changelog/v0.24.1/summary.md | 1 + CHANGELOG.md | 11 +++++++++++ Cargo.toml | 4 ++-- src/lib.rs | 2 +- 5 files changed, 15 insertions(+), 3 deletions(-) rename .changelog/{unreleased => v0.24.1}/features/47-add-borsh-and-codec-for-any.md (100%) create mode 100644 .changelog/v0.24.1/summary.md diff --git a/.changelog/unreleased/features/47-add-borsh-and-codec-for-any.md b/.changelog/v0.24.1/features/47-add-borsh-and-codec-for-any.md similarity index 100% rename from .changelog/unreleased/features/47-add-borsh-and-codec-for-any.md rename to .changelog/v0.24.1/features/47-add-borsh-and-codec-for-any.md diff --git a/.changelog/v0.24.1/summary.md b/.changelog/v0.24.1/summary.md new file mode 100644 index 00000000..e4e93b73 --- /dev/null +++ b/.changelog/v0.24.1/summary.md @@ -0,0 +1 @@ +This release adds `parity-scale-codec` and `borsh` serialize/deserialize for the `Any` type. diff --git a/CHANGELOG.md b/CHANGELOG.md index ec819430..c9b2655f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## v0.24.1 + +*January 10th, 2023* + +This release adds `parity-scale-codec` and `borsh` serialize/deserialize for the `Any` type. + +### FEATURES + +- Add parity-scale-codec and borsh for Any ([#47](https://github.com/cosmos/ibc- + proto-rs/issues/47)) + ## v0.24.0 *December 13th, 2022* diff --git a/Cargo.toml b/Cargo.toml index c0833a67..dfd0e4e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-proto" -version = "0.24.0" +version = "0.24.1" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" @@ -47,4 +47,4 @@ client = ["std", "tonic", "tonic/codegen", "tonic/transport", "tonic/prost" json-schema = ["std", "schemars"] server = ["std", "tonic", "tonic/codegen", "tonic/transport", "tonic/prost"] parity-scale-codec = ["dep:parity-scale-codec", "dep:scale-info"] -borsh = ["dep:borsh"] \ No newline at end of file +borsh = ["dep:borsh"] diff --git a/src/lib.rs b/src/lib.rs index 2a9d3983..b3fe715b 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.22.0")] +#![doc(html_root_url = "https://docs.rs/ibc-proto/0.24.1")] pub mod google; pub mod protobuf;