From 92b03b8b466d20f8cfb4cb2d4436db560ffee807 Mon Sep 17 00:00:00 2001 From: pgherveou Date: Tue, 10 Sep 2024 16:30:13 +0200 Subject: [PATCH 1/3] Bump versions --- ethbloom/CHANGELOG.md | 3 +++ ethbloom/Cargo.toml | 6 +++--- ethereum-types/CHANGELOG.md | 3 ++- ethereum-types/Cargo.toml | 12 ++++++------ keccak-hash/CHANGELOG.md | 5 ++++- keccak-hash/Cargo.toml | 4 ++-- primitive-types/CHANGELOG.md | 3 ++- primitive-types/Cargo.toml | 10 +++++----- primitive-types/impls/num-traits/CHANGELOG.md | 3 +++ primitive-types/impls/num-traits/Cargo.toml | 4 ++-- primitive-types/impls/rlp/CHANGELOG.md | 3 ++- primitive-types/impls/rlp/Cargo.toml | 4 ++-- primitive-types/impls/serde/CHANGELOG.md | 3 ++- primitive-types/impls/serde/Cargo.toml | 4 ++-- rlp-derive/CHANGELOG.md | 3 ++- rlp-derive/Cargo.toml | 2 +- rlp/CHANGELOG.md | 1 + rlp/Cargo.toml | 4 ++-- uint/CHANGELOG.md | 3 ++- uint/Cargo.toml | 2 +- 20 files changed, 49 insertions(+), 33 deletions(-) diff --git a/ethbloom/CHANGELOG.md b/ethbloom/CHANGELOG.md index 801efb666..581de6d80 100644 --- a/ethbloom/CHANGELOG.md +++ b/ethbloom/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.14.0] - 2024-09-10 +- Updated `impl-serde` to 0.5. [#859](https://github.com/paritytech/parity-common/pull/859) + ## [0.13.0] - 2022-09-20 - Updated `fixed-hash` to 0.8. [#680](https://github.com/paritytech/parity-common/pull/680) diff --git a/ethbloom/Cargo.toml b/ethbloom/Cargo.toml index fdc8cf8dc..34b3b3e38 100644 --- a/ethbloom/Cargo.toml +++ b/ethbloom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethbloom" -version = "0.13.0" +version = "0.14.0" authors = ["Parity Technologies "] description = "Ethereum bloom filter" license = "MIT OR Apache-2.0" @@ -14,8 +14,8 @@ rust-version = "1.56.1" tiny-keccak = { version = "2.0", features = ["keccak"] } crunchy = { version = "0.2.2", default-features = false, features = ["limit_256"] } fixed-hash = { path = "../fixed-hash", version = "0.8", default-features = false } -impl-serde = { path = "../primitive-types/impls/serde", version = "0.4", default-features = false, optional = true } -impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.3", default-features = false, optional = true } +impl-serde = { path = "../primitive-types/impls/serde", version = "0.5", default-features = false, optional = true } +impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.4", default-features = false, optional = true } impl-codec = { version = "0.6.0", path = "../primitive-types/impls/codec", default-features = false, optional = true } scale-info = { version = ">=1.0, <3", features = ["derive"], default-features = false, optional = true } diff --git a/ethereum-types/CHANGELOG.md b/ethereum-types/CHANGELOG.md index 19a728f25..7926daf1c 100644 --- a/ethereum-types/CHANGELOG.md +++ b/ethereum-types/CHANGELOG.md @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ ## [Unreleased] -### Breaking + +## [0.15.0] - 2024-09-10 - Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.14.1] - 2022-11-29 diff --git a/ethereum-types/Cargo.toml b/ethereum-types/Cargo.toml index 67d6fe6d9..fa967e32b 100644 --- a/ethereum-types/Cargo.toml +++ b/ethereum-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethereum-types" -version = "0.14.1" +version = "0.15.0" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" @@ -9,12 +9,12 @@ edition = "2021" rust-version = "1.60.0" [dependencies] -ethbloom = { path = "../ethbloom", version = "0.13", optional = true, default-features = false } +ethbloom = { path = "../ethbloom", version = "0.14", optional = true, default-features = false } fixed-hash = { path = "../fixed-hash", version = "0.8", default-features = false, features = ["byteorder", "rustc-hex"] } -uint-crate = { path = "../uint", package = "uint", version = "0.9", default-features = false } -primitive-types = { path = "../primitive-types", version = "0.12", features = ["byteorder", "rustc-hex"], default-features = false } -impl-serde = { path = "../primitive-types/impls/serde", version = "0.4.0", default-features = false, optional = true } -impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.3", default-features = false, optional = true } +uint-crate = { path = "../uint", package = "uint", version = "0.10", default-features = false } +primitive-types = { path = "../primitive-types", version = "0.13", features = ["byteorder", "rustc-hex"], default-features = false } +impl-serde = { path = "../primitive-types/impls/serde", version = "0.5.0", default-features = false, optional = true } +impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.4", default-features = false, optional = true } impl-codec = { version = "0.6.0", path = "../primitive-types/impls/codec", default-features = false, optional = true } scale-info = { version = ">=1.0, <3", features = ["derive"], default-features = false, optional = true } diff --git a/keccak-hash/CHANGELOG.md b/keccak-hash/CHANGELOG.md index 24d554a21..cfc47104e 100644 --- a/keccak-hash/CHANGELOG.md +++ b/keccak-hash/CHANGELOG.md @@ -6,7 +6,10 @@ The format is based on [Keep a Changelog]. ## [Unreleased] -## [0.12.0] - 2022-09-20 +## [0.11.0] - 2024-09-10 +- Updated `primitive-types` to 0.13. [#859](https://github.com/paritytech/parity-common/pull/859) + +## [0.10.0] - 2022-09-20 ### Breaking - Updated `parity-util-mem` to 0.12. [#680](https://github.com/paritytech/parity-common/pull/680) diff --git a/keccak-hash/Cargo.toml b/keccak-hash/Cargo.toml index 0ea24892d..210ea4020 100644 --- a/keccak-hash/Cargo.toml +++ b/keccak-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "keccak-hash" -version = "0.10.0" +version = "0.11.0" description = "`keccak-hash` is a set of utility functions to facilitate working with Keccak hashes (256/512 bits long)." authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" @@ -11,7 +11,7 @@ rust-version = "1.56.1" [dependencies] tiny-keccak = { version = "2.0", features = ["keccak"] } -primitive-types = { path = "../primitive-types", version = "0.12", default-features = false } +primitive-types = { path = "../primitive-types", version = "0.13", default-features = false } [dev-dependencies] tempfile = "3.1.0" diff --git a/primitive-types/CHANGELOG.md b/primitive-types/CHANGELOG.md index 485138489..61cf3ee3e 100644 --- a/primitive-types/CHANGELOG.md +++ b/primitive-types/CHANGELOG.md @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ ## [Unreleased] -### Breaking + +## [0.13.0] - 2024-09-10 - Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.12.2] - 2023-10-10 diff --git a/primitive-types/Cargo.toml b/primitive-types/Cargo.toml index 6aa89d2aa..1bf2f4d41 100644 --- a/primitive-types/Cargo.toml +++ b/primitive-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "primitive-types" -version = "0.12.2" +version = "0.13.0" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" @@ -11,11 +11,11 @@ rust-version = "1.60.0" [dependencies] fixed-hash = { version = "0.8", path = "../fixed-hash", default-features = false } -uint = { version = "0.9.5", path = "../uint", default-features = false } -impl-serde = { version = "0.4.0", path = "impls/serde", default-features = false, optional = true } +uint = { version = "0.10.0", path = "../uint", default-features = false } +impl-serde = { version = "0.5.0", path = "impls/serde", default-features = false, optional = true } impl-codec = { version = "0.6.0", path = "impls/codec", default-features = false, optional = true } -impl-num-traits = { version = "0.1.0", path = "impls/num-traits", default-features = false, optional = true } -impl-rlp = { version = "0.3", path = "impls/rlp", default-features = false, optional = true } +impl-num-traits = { version = "0.2.0", path = "impls/num-traits", default-features = false, optional = true } +impl-rlp = { version = "0.4", path = "impls/rlp", default-features = false, optional = true } scale-info-crate = { package = "scale-info", version = ">=0.9, <3", features = ["derive"], default-features = false, optional = true } schemars = { version = ">=0.8.12", default-features = true, optional = true } diff --git a/primitive-types/impls/num-traits/CHANGELOG.md b/primitive-types/impls/num-traits/CHANGELOG.md index d33482beb..6a9d831f1 100644 --- a/primitive-types/impls/num-traits/CHANGELOG.md +++ b/primitive-types/impls/num-traits/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.2.0] - 2024-09-10 +- Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859) + ## [0.1.2] - 2023-02-01 - Added `checked_*` trait impls. [#716](https://github.com/paritytech/parity-common/pull/716) - Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601) diff --git a/primitive-types/impls/num-traits/Cargo.toml b/primitive-types/impls/num-traits/Cargo.toml index 765ed92e6..64df11f7e 100644 --- a/primitive-types/impls/num-traits/Cargo.toml +++ b/primitive-types/impls/num-traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-num-traits" -version = "0.1.2" +version = "0.2.0" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" @@ -11,4 +11,4 @@ rust-version = "1.56.1" [dependencies] num-traits = { version = "0.2", default-features = false } integer-sqrt = "0.1" -uint = { version = "0.9.5", path = "../../../uint", default-features = false } +uint = { version = "0.10.0", path = "../../../uint", default-features = false } diff --git a/primitive-types/impls/rlp/CHANGELOG.md b/primitive-types/impls/rlp/CHANGELOG.md index a7a98544b..5640c15f5 100644 --- a/primitive-types/impls/rlp/CHANGELOG.md +++ b/primitive-types/impls/rlp/CHANGELOG.md @@ -4,7 +4,8 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## [Unreleased] +## [0.4.0] - 2024-09-10 +- Updated `rlp` to 0.6. [#859](https://github.com/paritytech/parity-common/pull/859) - Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601) ## [0.3.0] - 2021-01-05 diff --git a/primitive-types/impls/rlp/Cargo.toml b/primitive-types/impls/rlp/Cargo.toml index e85d68e43..839a5842e 100644 --- a/primitive-types/impls/rlp/Cargo.toml +++ b/primitive-types/impls/rlp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-rlp" -version = "0.3.0" +version = "0.4.0" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" @@ -9,7 +9,7 @@ edition = "2021" rust-version = "1.56.1" [dependencies] -rlp = { version = "0.5", path = "../../../rlp", default-features = false } +rlp = { version = "0.6", path = "../../../rlp", default-features = false } [features] default = ["std"] diff --git a/primitive-types/impls/serde/CHANGELOG.md b/primitive-types/impls/serde/CHANGELOG.md index 623185f63..e86f5c495 100644 --- a/primitive-types/impls/serde/CHANGELOG.md +++ b/primitive-types/impls/serde/CHANGELOG.md @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ ## [Unreleased] -### Breaking + +## [0.5.0] - 2024-09-10 - Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.4.0] - 2022-09-02 diff --git a/primitive-types/impls/serde/Cargo.toml b/primitive-types/impls/serde/Cargo.toml index 3a3ca2679..929a60126 100644 --- a/primitive-types/impls/serde/Cargo.toml +++ b/primitive-types/impls/serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-serde" -version = "0.4.0" +version = "0.5.0" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" @@ -19,7 +19,7 @@ serde = { version = "1.0.101", default-features = false, features = ["alloc"] } criterion = "0.5.1" serde_derive = "1.0.101" serde_json = "1.0.41" -uint = { version = "0.9.5", path = "../../../uint" } +uint = { version = "0.10.0", path = "../../../uint" } [[bench]] name = "impl_serde" diff --git a/rlp-derive/CHANGELOG.md b/rlp-derive/CHANGELOG.md index 85516d84b..416a1a7d5 100644 --- a/rlp-derive/CHANGELOG.md +++ b/rlp-derive/CHANGELOG.md @@ -4,7 +4,8 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## [Unreleased] +## [0.2.0] - 2024-09-10 +- Updated `rlp` to 0.6. [#859](https://github.com/paritytech/parity-common/pull/859) - Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601) ## [0.1.0] - 2020-02-13 diff --git a/rlp-derive/Cargo.toml b/rlp-derive/Cargo.toml index 5ca3af4ec..421015403 100644 --- a/rlp-derive/Cargo.toml +++ b/rlp-derive/Cargo.toml @@ -17,4 +17,4 @@ quote = "1.0.2" proc-macro2 = "1.0.8" [dev-dependencies] -rlp = { version = "0.5.0", path = "../rlp" } +rlp = { version = "0.6.0", path = "../rlp" } diff --git a/rlp/CHANGELOG.md b/rlp/CHANGELOG.md index 0d5e343ac..b221f46c5 100644 --- a/rlp/CHANGELOG.md +++ b/rlp/CHANGELOG.md @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog]. ## [Unreleased] - Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601) +- Updated `primitive-types` to 0.13. [#859](https://github.com/paritytech/parity-common/pull/859) ## [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 55d7eaf4b..55748e45e 100644 --- a/rlp/Cargo.toml +++ b/rlp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rlp" -version = "0.5.2" +version = "0.6.0" description = "Recursive-length prefix encoding, decoding, and compression" repository = "https://github.com/paritytech/parity-common" license = "MIT OR Apache-2.0" @@ -16,7 +16,7 @@ rlp-derive = { version = "0.1", path = "../rlp-derive", optional = true } [dev-dependencies] criterion = "0.5.1" hex-literal = "0.4.1" -primitive-types = { path = "../primitive-types", version = "0.12", features = ["impl-rlp"] } +primitive-types = { path = "../primitive-types", version = "0.13", features = ["impl-rlp"] } [features] default = ["std"] diff --git a/uint/CHANGELOG.md b/uint/CHANGELOG.md index 78474c709..21175250a 100644 --- a/uint/CHANGELOG.md +++ b/uint/CHANGELOG.md @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ ## [Unreleased] -### Breaking + +## [0.10.0] - 2024-09-10 - Removed From<[u8; n]> conversions, renamed `to_big_endian` / `to_little_endian` to write_as_*, and made them return byte arrays. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.9.5] - 2022-11-29 diff --git a/uint/Cargo.toml b/uint/Cargo.toml index 44bef00d6..dbb84d18a 100644 --- a/uint/Cargo.toml +++ b/uint/Cargo.toml @@ -4,7 +4,7 @@ homepage = "http://parity.io" repository = "https://github.com/paritytech/parity-common" license = "MIT OR Apache-2.0" name = "uint" -version = "0.9.5" +version = "0.10.0" authors = ["Parity Technologies "] readme = "README.md" edition = "2021" From 6d5c85406d703f60b1dbba5a14079b21f94900df Mon Sep 17 00:00:00 2001 From: pgherveou Date: Tue, 10 Sep 2024 16:32:38 +0200 Subject: [PATCH 2/3] Update rlp changelog --- rlp/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rlp/CHANGELOG.md b/rlp/CHANGELOG.md index b221f46c5..3ffcdb9c1 100644 --- a/rlp/CHANGELOG.md +++ b/rlp/CHANGELOG.md @@ -4,7 +4,7 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## [Unreleased] +## [0.6.0] - 2024-09-10 - Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601) - Updated `primitive-types` to 0.13. [#859](https://github.com/paritytech/parity-common/pull/859) From 3cc6bf1f8d7335b5afa81ccc04084d611207d7c3 Mon Sep 17 00:00:00 2001 From: ordian Date: Wed, 11 Sep 2024 11:40:25 +0200 Subject: [PATCH 3/3] adjust the date --- ethbloom/CHANGELOG.md | 2 +- ethereum-types/CHANGELOG.md | 2 +- keccak-hash/CHANGELOG.md | 2 +- primitive-types/CHANGELOG.md | 2 +- primitive-types/impls/num-traits/CHANGELOG.md | 2 +- primitive-types/impls/rlp/CHANGELOG.md | 2 +- primitive-types/impls/serde/CHANGELOG.md | 2 +- rlp-derive/CHANGELOG.md | 3 +-- rlp/CHANGELOG.md | 3 +-- uint/CHANGELOG.md | 2 +- 10 files changed, 10 insertions(+), 12 deletions(-) diff --git a/ethbloom/CHANGELOG.md b/ethbloom/CHANGELOG.md index 581de6d80..01e267c35 100644 --- a/ethbloom/CHANGELOG.md +++ b/ethbloom/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog]. ## [Unreleased] -## [0.14.0] - 2024-09-10 +## [0.14.0] - 2024-09-11 - Updated `impl-serde` to 0.5. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.13.0] - 2022-09-20 diff --git a/ethereum-types/CHANGELOG.md b/ethereum-types/CHANGELOG.md index 7926daf1c..4247d6f7f 100644 --- a/ethereum-types/CHANGELOG.md +++ b/ethereum-types/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog]. ## [Unreleased] -## [0.15.0] - 2024-09-10 +## [0.15.0] - 2024-09-11 - Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.14.1] - 2022-11-29 diff --git a/keccak-hash/CHANGELOG.md b/keccak-hash/CHANGELOG.md index cfc47104e..f34dc1074 100644 --- a/keccak-hash/CHANGELOG.md +++ b/keccak-hash/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog]. ## [Unreleased] -## [0.11.0] - 2024-09-10 +## [0.11.0] - 2024-09-11 - Updated `primitive-types` to 0.13. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.10.0] - 2022-09-20 diff --git a/primitive-types/CHANGELOG.md b/primitive-types/CHANGELOG.md index 61cf3ee3e..b0a1e7994 100644 --- a/primitive-types/CHANGELOG.md +++ b/primitive-types/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog]. ## [Unreleased] -## [0.13.0] - 2024-09-10 +## [0.13.0] - 2024-09-11 - Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.12.2] - 2023-10-10 diff --git a/primitive-types/impls/num-traits/CHANGELOG.md b/primitive-types/impls/num-traits/CHANGELOG.md index 6a9d831f1..1f811b9cc 100644 --- a/primitive-types/impls/num-traits/CHANGELOG.md +++ b/primitive-types/impls/num-traits/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog]. ## [Unreleased] -## [0.2.0] - 2024-09-10 +## [0.2.0] - 2024-09-11 - Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.1.2] - 2023-02-01 diff --git a/primitive-types/impls/rlp/CHANGELOG.md b/primitive-types/impls/rlp/CHANGELOG.md index 5640c15f5..fb5aaed4c 100644 --- a/primitive-types/impls/rlp/CHANGELOG.md +++ b/primitive-types/impls/rlp/CHANGELOG.md @@ -4,7 +4,7 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## [0.4.0] - 2024-09-10 +## [0.4.0] - 2024-09-11 - Updated `rlp` to 0.6. [#859](https://github.com/paritytech/parity-common/pull/859) - Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601) diff --git a/primitive-types/impls/serde/CHANGELOG.md b/primitive-types/impls/serde/CHANGELOG.md index e86f5c495..700067d1a 100644 --- a/primitive-types/impls/serde/CHANGELOG.md +++ b/primitive-types/impls/serde/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog]. ## [Unreleased] -## [0.5.0] - 2024-09-10 +## [0.5.0] - 2024-09-11 - Updated `uint` to 0.10. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.4.0] - 2022-09-02 diff --git a/rlp-derive/CHANGELOG.md b/rlp-derive/CHANGELOG.md index 416a1a7d5..baa0a22f5 100644 --- a/rlp-derive/CHANGELOG.md +++ b/rlp-derive/CHANGELOG.md @@ -4,8 +4,7 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## [0.2.0] - 2024-09-10 -- Updated `rlp` to 0.6. [#859](https://github.com/paritytech/parity-common/pull/859) +## [0.2.0] - 2024-09-11 - Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601) ## [0.1.0] - 2020-02-13 diff --git a/rlp/CHANGELOG.md b/rlp/CHANGELOG.md index 3ffcdb9c1..c8232faca 100644 --- a/rlp/CHANGELOG.md +++ b/rlp/CHANGELOG.md @@ -4,9 +4,8 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## [0.6.0] - 2024-09-10 +## [0.6.0] - 2024-09-11 - Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601) -- Updated `primitive-types` to 0.13. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.5.2] - 2022-10-21 - Add optional `derive` feature. [#613](https://github.com/paritytech/parity-common/pull/613) diff --git a/uint/CHANGELOG.md b/uint/CHANGELOG.md index 21175250a..110def6a4 100644 --- a/uint/CHANGELOG.md +++ b/uint/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog]. ## [Unreleased] -## [0.10.0] - 2024-09-10 +## [0.10.0] - 2024-09-11 - Removed From<[u8; n]> conversions, renamed `to_big_endian` / `to_little_endian` to write_as_*, and made them return byte arrays. [#859](https://github.com/paritytech/parity-common/pull/859) ## [0.9.5] - 2022-11-29