diff --git a/ethbloom/CHANGELOG.md b/ethbloom/CHANGELOG.md index 801efb66..01e267c3 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-11 +- 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 fdc8cf8d..34b3b3e3 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 19a728f2..4247d6f7 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-11 - 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 67d6fe6d..fa967e32 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 24d554a2..f34dc107 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-11 +- 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 0ea24892..210ea402 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 48513848..b0a1e799 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-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/Cargo.toml b/primitive-types/Cargo.toml index 6aa89d2a..1bf2f4d4 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 d33482be..1f811b9c 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-11 +- 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 765ed92e..64df11f7 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 a7a98544..fb5aaed4 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-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) ## [0.3.0] - 2021-01-05 diff --git a/primitive-types/impls/rlp/Cargo.toml b/primitive-types/impls/rlp/Cargo.toml index e85d68e4..839a5842 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 623185f6..700067d1 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-11 - 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 3a3ca267..929a6012 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 85516d84..baa0a22f 100644 --- a/rlp-derive/CHANGELOG.md +++ b/rlp-derive/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.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-derive/Cargo.toml b/rlp-derive/Cargo.toml index 5ca3af4e..42101540 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 0d5e343a..c8232fac 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-11 - Migrated to 2021 edition, enforcing MSRV of `1.56.1`. [#601](https://github.com/paritytech/parity-common/pull/601) ## [0.5.2] - 2022-10-21 diff --git a/rlp/Cargo.toml b/rlp/Cargo.toml index 55d7eaf4..55748e45 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 78474c70..110def6a 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-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 diff --git a/uint/Cargo.toml b/uint/Cargo.toml index 44bef00d..dbb84d18 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"