diff --git a/.changelog/v0.25.0/summary.md b/.changelog/v0.25.0/summary.md new file mode 100644 index 00000000..1603a273 --- /dev/null +++ b/.changelog/v0.25.0/summary.md @@ -0,0 +1,2 @@ +This release updates borsh to v0.10.0 and fixes a typo in borsh deserialization of `Any` ([#59](https://github.com/cosmos/ibc- + proto-rs/pull/59)). diff --git a/CHANGELOG.md b/CHANGELOG.md index c9b2655f..96f74a1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## v0.25.0 + +*February 9th, 2023* + +This release updates borsh to v0.10.0 and fixes a typo in borsh deserialization of `Any` ([#59](https://github.com/cosmos/ibc- + proto-rs/pull/59)). + ## v0.24.1 *January 10th, 2023* diff --git a/Cargo.toml b/Cargo.toml index 9fd252ff..250178bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-proto" -version = "0.24.1" +version = "0.25.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index b3fe715b..80818831 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.24.1")] +#![doc(html_root_url = "https://docs.rs/ibc-proto/0.25.0")] pub mod google; pub mod protobuf;