From d0edf8e9cd38f7fc1bfc4311b2814e5d2ea966e8 Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Thu, 27 Apr 2023 09:45:49 +0200 Subject: [PATCH] chore: Prepare release of version 0.10.1 of the Rust crate (#150) --- CHANGELOG.md | 12 ++++++++++++ rust/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56a96174..991fd438 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +# 0.10.1 + +## Rust + +The only change in this release of the `ics23` crate is the addition of a `serde` feature +which adds ProtoJSON-compatible `Serialize` and `Deserialize` instances on all Protobuf definitions via +the [`pbjson-build`](https://docs.rs/pbjson-build/latest/pbjson_build/) crate. + +## Full changes + +- feat(rust): Add ProtoJSON-compatible `Serialize` and `Deserialize` instances on all Protobuf definitions via `pbjson` ([#146](https://github.com/cosmos/ics23/pull/146)) + # 0.10.0 ## Go / Rust / TypeScript diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 9e0aaf01..ca951300 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" name = "ics23" repository = "https://github.com/cosmos/ics23/tree/master/rust" rust-version = "1.56.1" -version = "0.10.0" +version = "0.10.1" [workspace] members = ["codegen", "no-std-check"]