From 9089921bdb3442f939d9c04b7712a3e6d02e999c Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Wed, 16 Aug 2023 15:44:35 +0200 Subject: [PATCH] chore: prepare release of version 0.10.2 of the Rust crate (#160) * Update changelog * Bump Rust crate version to v0.10.2 --- CHANGELOG.md | 11 +++++++++++ rust/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 991fd438..a351f38b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +# 0.10.2 + +## Rust + +This release re-enables `no_std` support for ProtoJSON `Serialize` and `Deserialize` instances, +by swapping out `pbjson` for the `no_std`-compatible fork `informalsystems-pbjson`. + +## Full changes + +- feat(rust): enable no_std support for pbjson ([#158](https://github.com/cosmos/ics23/pull/146)) + # 0.10.1 ## Rust diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 0fd59db6..0edd7849 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.1" +version = "0.10.2" [workspace] members = ["codegen", "no-std-check"]