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"]