Skip to content

Commit

Permalink
Release v0.24.1 (#51)
Browse files Browse the repository at this point in the history
* unclog release

* bump versions
  • Loading branch information
plafer authored Jan 10, 2023
1 parent a6f4d80 commit 9bdf97d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
1 change: 1 addition & 0 deletions .changelog/v0.24.1/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This release adds `parity-scale-codec` and `borsh` serialize/deserialize for the `Any` type.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# CHANGELOG

## v0.24.1

*January 10th, 2023*

This release adds `parity-scale-codec` and `borsh` serialize/deserialize for the `Any` type.

### FEATURES

- Add parity-scale-codec and borsh for Any ([#47](https://github.com/cosmos/ibc-
proto-rs/issues/47))

## v0.24.0

*December 13th, 2022*
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-proto"
version = "0.24.0"
version = "0.24.1"
authors = ["Informal Systems <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -47,4 +47,4 @@ client = ["std", "tonic", "tonic/codegen", "tonic/transport", "tonic/prost"
json-schema = ["std", "schemars"]
server = ["std", "tonic", "tonic/codegen", "tonic/transport", "tonic/prost"]
parity-scale-codec = ["dep:parity-scale-codec", "dep:scale-info"]
borsh = ["dep:borsh"]
borsh = ["dep:borsh"]
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#![allow(clippy::large_enum_variant, clippy::derive_partial_eq_without_eq)]
#![allow(rustdoc::bare_urls)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/ibc-proto/0.22.0")]
#![doc(html_root_url = "https://docs.rs/ibc-proto/0.24.1")]

pub mod google;
pub mod protobuf;
Expand Down

0 comments on commit 9bdf97d

Please sign in to comment.