Skip to content

Commit

Permalink
fix rlp version
Browse files Browse the repository at this point in the history
  • Loading branch information
ordian committed Sep 11, 2024
1 parent eeaacc3 commit 5be22d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
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 5be22d3

Please sign in to comment.