Skip to content

Commit

Permalink
bump rlp-derive version (#861)
Browse files Browse the repository at this point in the history
* bump rlp-derive version

* fix rlp version
  • Loading branch information
ordian committed Sep 11, 2024
1 parent 63c5afb commit ab7a762
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rlp-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rlp-derive"
version = "0.1.0"
version = "0.2.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT OR Apache-2.0"
description = "Derive macro for #[derive(RlpEncodable, RlpDecodable)]"
Expand Down
3 changes: 2 additions & 1 deletion rlp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [0.6.0] - 2024-09-11
## [0.6.1] - 2024-09-11
- Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601)
- Updated `rlp` to 0.2.0. [#860](https://github.com/paritytech/parity-common/pull/860)

## [0.5.2] - 2022-10-21
- Add optional `derive` feature. [#613](https://github.com/paritytech/parity-common/pull/613)
Expand Down
4 changes: 2 additions & 2 deletions rlp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rlp"
version = "0.6.0"
version = "0.6.1"
description = "Recursive-length prefix encoding, decoding, and compression"
repository = "https://github.com/paritytech/parity-common"
license = "MIT OR Apache-2.0"
Expand All @@ -11,7 +11,7 @@ rust-version = "1.56.1"
[dependencies]
bytes = { version = "1", default-features = false }
rustc-hex = { version = "2.0.1", default-features = false }
rlp-derive = { version = "0.1", path = "../rlp-derive", optional = true }
rlp-derive = { version = "0.2", path = "../rlp-derive", optional = true }

[dev-dependencies]
criterion = "0.5.1"
Expand Down

0 comments on commit ab7a762

Please sign in to comment.