From d50fad2489530cc627276389e2e2affc72d161df Mon Sep 17 00:00:00 2001 From: ordian Date: Thu, 12 Sep 2024 12:45:40 +0200 Subject: [PATCH 1/5] bump impl-codec --- primitive-types/CHANGELOG.md | 2 +- primitive-types/Cargo.toml | 2 +- primitive-types/impls/codec/CHANGELOG.md | 4 ++++ primitive-types/impls/codec/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/primitive-types/CHANGELOG.md b/primitive-types/CHANGELOG.md index b0a1e7994..7bcb454af 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-11 +## [0.13.1] - 2024-09-12 - 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 1bf2f4d41..2279b6ab7 100644 --- a/primitive-types/Cargo.toml +++ b/primitive-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "primitive-types" -version = "0.13.0" +version = "0.13.1" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" diff --git a/primitive-types/impls/codec/CHANGELOG.md b/primitive-types/impls/codec/CHANGELOG.md index 713c28aa7..aac607ab4 100644 --- a/primitive-types/impls/codec/CHANGELOG.md +++ b/primitive-types/impls/codec/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.7.0] - 2024-09-12 +### Breaking +- Updated to `uint` 0.10. [#860](https://github.com/paritytech/parity-common/pull/860) + ## [0.6.0] - 2022-02-04 ### Breaking - 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/codec/Cargo.toml b/primitive-types/impls/codec/Cargo.toml index 5f41774c1..d0bd6b602 100644 --- a/primitive-types/impls/codec/Cargo.toml +++ b/primitive-types/impls/codec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-codec" -version = "0.6.0" +version = "0.7.0" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" From dd54c827ec7392d71db541a2872912c89b3d5afb Mon Sep 17 00:00:00 2001 From: ordian Date: Thu, 12 Sep 2024 12:46:20 +0200 Subject: [PATCH 2/5] fix rlp changelog --- rlp/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rlp/CHANGELOG.md b/rlp/CHANGELOG.md index 8c1c41077..dd5fd2e4d 100644 --- a/rlp/CHANGELOG.md +++ b/rlp/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog]. ## [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) +- Updated `rlp-derive` 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) From 829682ba8bd92e221e83624425c0cb9df1ff3358 Mon Sep 17 00:00:00 2001 From: ordian Date: Thu, 12 Sep 2024 12:48:35 +0200 Subject: [PATCH 3/5] bump dep --- primitive-types/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/primitive-types/Cargo.toml b/primitive-types/Cargo.toml index 2279b6ab7..34ddca0bb 100644 --- a/primitive-types/Cargo.toml +++ b/primitive-types/Cargo.toml @@ -13,7 +13,7 @@ rust-version = "1.60.0" fixed-hash = { version = "0.8", path = "../fixed-hash", default-features = false } 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-codec = { version = "0.7.0", path = "impls/codec", 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 } From 173a26d79b6b53dbc9501676816da9b909330786 Mon Sep 17 00:00:00 2001 From: ordian Date: Thu, 12 Sep 2024 12:50:50 +0200 Subject: [PATCH 4/5] ethereum-types too --- ethereum-types/CHANGELOG.md | 2 +- ethereum-types/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ethereum-types/CHANGELOG.md b/ethereum-types/CHANGELOG.md index 4247d6f7f..33030f4bb 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-11 +## [0.15.1] - 2024-09-12 - 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 fa967e32b..81efabaaf 100644 --- a/ethereum-types/Cargo.toml +++ b/ethereum-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethereum-types" -version = "0.15.0" +version = "0.15.1" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" @@ -15,7 +15,7 @@ uint-crate = { path = "../uint", package = "uint", version = "0.10", default-fea 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 } +impl-codec = { version = "0.7.0", path = "../primitive-types/impls/codec", default-features = false, optional = true } scale-info = { version = ">=1.0, <3", features = ["derive"], default-features = false, optional = true } [dev-dependencies] From 21d7963dabfe70a48952d6eb833aa4131e2db439 Mon Sep 17 00:00:00 2001 From: ordian Date: Thu, 12 Sep 2024 12:54:48 +0200 Subject: [PATCH 5/5] ethbloom too --- ethbloom/CHANGELOG.md | 3 ++- ethbloom/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ethbloom/CHANGELOG.md b/ethbloom/CHANGELOG.md index 01e267c35..a9a5f415e 100644 --- a/ethbloom/CHANGELOG.md +++ b/ethbloom/CHANGELOG.md @@ -6,8 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] -## [0.14.0] - 2024-09-11 +## [0.14.1] - 2024-09-12 - Updated `impl-serde` to 0.5. [#859](https://github.com/paritytech/parity-common/pull/859) +- Updated `impl-codec` to 0.7. [#860](https://github.com/paritytech/parity-common/pull/860) ## [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 34b3b3e38..9f858c889 100644 --- a/ethbloom/Cargo.toml +++ b/ethbloom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethbloom" -version = "0.14.0" +version = "0.14.1" authors = ["Parity Technologies "] description = "Ethereum bloom filter" license = "MIT OR Apache-2.0" @@ -16,7 +16,7 @@ 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.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 } +impl-codec = { version = "0.7.0", path = "../primitive-types/impls/codec", default-features = false, optional = true } scale-info = { version = ">=1.0, <3", features = ["derive"], default-features = false, optional = true } [dev-dependencies]