From eeaacc3a6e5a42be71a03ec1e40d160cba3fa210 Mon Sep 17 00:00:00 2001 From: ordian Date: Wed, 11 Sep 2024 11:51:01 +0200 Subject: [PATCH 1/2] bump rlp-derive version --- rlp-derive/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rlp-derive/Cargo.toml b/rlp-derive/Cargo.toml index 42101540..1a0967de 100644 --- a/rlp-derive/Cargo.toml +++ b/rlp-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rlp-derive" -version = "0.1.0" +version = "0.2.0" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" description = "Derive macro for #[derive(RlpEncodable, RlpDecodable)]" From 5be22d3cd430aa472866da958ae51759f0e8f36c Mon Sep 17 00:00:00 2001 From: ordian Date: Wed, 11 Sep 2024 12:14:47 +0200 Subject: [PATCH 2/2] fix rlp version --- rlp/CHANGELOG.md | 3 ++- rlp/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/rlp/CHANGELOG.md b/rlp/CHANGELOG.md index c8232fac..8c1c4107 100644 --- a/rlp/CHANGELOG.md +++ b/rlp/CHANGELOG.md @@ -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) diff --git a/rlp/Cargo.toml b/rlp/Cargo.toml index 55748e45..0f1583e5 100644 --- a/rlp/Cargo.toml +++ b/rlp/Cargo.toml @@ -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" @@ -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"