diff --git a/ethbloom/CHANGELOG.md b/ethbloom/CHANGELOG.md index de418cd9d..cc467dae8 100644 --- a/ethbloom/CHANGELOG.md +++ b/ethbloom/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.9.1] - 2020-04-27 +- Added `arbitrary` feature. [#378](https://github.com/paritytech/parity-common/pull/378) + ## [0.9.0] - 2020-03-16 - Removed `libc` feature. [#317](https://github.com/paritytech/parity-common/pull/317) - License changed from MIT to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342) diff --git a/ethbloom/Cargo.toml b/ethbloom/Cargo.toml index 1f2de0a62..de61568ce 100644 --- a/ethbloom/Cargo.toml +++ b/ethbloom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethbloom" -version = "0.9.0" +version = "0.9.1" authors = ["Parity Technologies "] description = "Ethereum bloom filter" license = "MIT OR Apache-2.0" diff --git a/ethereum-types/CHANGELOG.md b/ethereum-types/CHANGELOG.md index 9455e7bba..c91696835 100644 --- a/ethereum-types/CHANGELOG.md +++ b/ethereum-types/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.9.1] - 2020-04-27 +- Added `arbitrary` feature. [#378](https://github.com/paritytech/parity-common/pull/378) + ## [0.9.0] - 2020-03-16 - License changed from MIT to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342) - Updated dependencies. [#361](https://github.com/paritytech/parity-common/pull/361) diff --git a/ethereum-types/Cargo.toml b/ethereum-types/Cargo.toml index 8d9dc0739..572ad5530 100644 --- a/ethereum-types/Cargo.toml +++ b/ethereum-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethereum-types" -version = "0.9.0" +version = "0.9.1" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" diff --git a/fixed-hash/CHANGELOG.md b/fixed-hash/CHANGELOG.md index da5ec524d..6db7b6e76 100644 --- a/fixed-hash/CHANGELOG.md +++ b/fixed-hash/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.6.1] - 2020-04-27 +- Added `arbitrary` feature. [#378](https://github.com/paritytech/parity-common/pull/378) + ## [0.6.0] - 2020-03-16 - Removed `libc` feature. [#317](https://github.com/paritytech/parity-common/pull/317) - License changed from MIT to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342) diff --git a/fixed-hash/Cargo.toml b/fixed-hash/Cargo.toml index 33fd076a0..c8e85585f 100644 --- a/fixed-hash/Cargo.toml +++ b/fixed-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fixed-hash" -version = "0.6.0" +version = "0.6.1" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" diff --git a/primitive-types/CHANGELOG.md b/primitive-types/CHANGELOG.md index 4c6f65713..8f5d60af2 100644 --- a/primitive-types/CHANGELOG.md +++ b/primitive-types/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.7.1] - 2020-04-27 +- Added `arbitrary` feature. [#378](https://github.com/paritytech/parity-common/pull/378) + ## [0.7.0] - 2020-03-16 - Removed `libc` feature. [#317](https://github.com/paritytech/parity-common/pull/317) diff --git a/primitive-types/Cargo.toml b/primitive-types/Cargo.toml index fcbdc4e63..b64d2b35b 100644 --- a/primitive-types/Cargo.toml +++ b/primitive-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "primitive-types" -version = "0.7.0" +version = "0.7.1" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" @@ -9,7 +9,7 @@ edition = "2018" [dependencies] fixed-hash = { version = "0.6", path = "../fixed-hash", default-features = false } -uint = { version = "0.8.1", path = "../uint", default-features = false } +uint = { version = "0.8.3", path = "../uint", default-features = false } impl-serde = { version = "0.3.0", path = "impls/serde", default-features = false, optional = true } impl-codec = { version = "0.4.1", path = "impls/codec", default-features = false, optional = true } impl-rlp = { version = "0.2", path = "impls/rlp", default-features = false, optional = true } diff --git a/primitive-types/impls/serde/Cargo.toml b/primitive-types/impls/serde/Cargo.toml index ab923bb63..78122b1ff 100644 --- a/primitive-types/impls/serde/Cargo.toml +++ b/primitive-types/impls/serde/Cargo.toml @@ -14,7 +14,7 @@ serde = "1.0.101" criterion = "0.3.0" serde_derive = "1.0.101" serde_json = "1.0.41" -uint = "0.8.1" +uint = { version = "0.8.3", path = "../../../uint" } [[bench]] name = "impl_serde" diff --git a/uint/CHANGELOG.md b/uint/CHANGELOG.md index c04300e84..386475612 100644 --- a/uint/CHANGELOG.md +++ b/uint/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.8.3] - 2020-04-27 +- Added `arbitrary` feature. [#378](https://github.com/paritytech/parity-common/pull/378) +- Fixed UB in `from_big_endian`. [#381](https://github.com/paritytech/parity-common/pull/381) + ## [0.8.2] - 2019-10-24 ### Fixed - Fixed 2018 edition imports. [#237](https://github.com/paritytech/parity-common/pull/237) diff --git a/uint/Cargo.toml b/uint/Cargo.toml index 97d489884..274b50692 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.8.2" +version = "0.8.3" authors = ["Parity Technologies "] readme = "README.md" edition = "2018"