-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
40 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
- Derive `Serialize` and `Deserialize` impls compatible with ProtoJSON using | ||
`pbjson-build`. | ||
|
||
This is a breaking change because the code generated by `pbjson-build` is not | ||
`no_std` compatible. Therefore, the `serde` annotations on the generated protos | ||
are only enabled when the `std` feature of `ibc-proto` is enabled. | ||
([\#95](https://github.com/cosmos/ibc-proto-rs/issues/95)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
*May 31st, 2023* | ||
|
||
This is the final release of `ibc-proto` v0.31.0. | ||
|
||
There are no changes from v0.31.0-alpha.2. | ||
|
||
For the differences since v0.30.0, please see the changelog entries for v0.31.0-alpha.1 and v0.31.0-alpha.1. | ||
|
||
> **Warning** | ||
> This release removes support for `Serialize` and `Deserailize` trait impls being available in `no_std` context. | ||
> See the release notes below and associated issues for more details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ibc-proto" | ||
version = "0.31.0-alpha.2" | ||
version = "0.31.0" | ||
authors = ["Informal Systems <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|