Skip to content

Commit ab7a762

Browse files
authored
bump rlp-derive version (#861)
* bump rlp-derive version * fix rlp version
1 parent 63c5afb commit ab7a762

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

rlp-derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rlp-derive"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Parity Technologies <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "Derive macro for #[derive(RlpEncodable, RlpDecodable)]"

rlp/CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ The format is based on [Keep a Changelog].
44

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

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

1011
## [0.5.2] - 2022-10-21
1112
- Add optional `derive` feature. [#613](https://github.com/paritytech/parity-common/pull/613)

rlp/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rlp"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "Recursive-length prefix encoding, decoding, and compression"
55
repository = "https://github.com/paritytech/parity-common"
66
license = "MIT OR Apache-2.0"
@@ -11,7 +11,7 @@ rust-version = "1.56.1"
1111
[dependencies]
1212
bytes = { version = "1", default-features = false }
1313
rustc-hex = { version = "2.0.1", default-features = false }
14-
rlp-derive = { version = "0.1", path = "../rlp-derive", optional = true }
14+
rlp-derive = { version = "0.2", path = "../rlp-derive", optional = true }
1515

1616
[dev-dependencies]
1717
criterion = "0.5.1"

0 commit comments

Comments
 (0)