From 69516ad315ecb579dbe7599a6f8b15497cfa8f95 Mon Sep 17 00:00:00 2001 From: Romain Ruetschi <106849+romac@users.noreply.github.com> Date: Wed, 16 Aug 2023 09:51:02 +0200 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 From bf1eb943255dc344c8e21c55ebd0e5e3bdb76a28 Mon Sep 17 00:00:00 2001 From: Romain Ruetschi <106849+romac@users.noreply.github.com> Date: Wed, 16 Aug 2023 09:51:24 +0200 Subject: [PATCH 2/2] Bump Rust crate version to v0.10.2 --- rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]