diff --git a/kvdb-memorydb/CHANGELOG.md b/kvdb-memorydb/CHANGELOG.md index 50bfeda77..f2f80a709 100644 --- a/kvdb-memorydb/CHANGELOG.md +++ b/kvdb-memorydb/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.4.0] - 2019-02-05 +- Bump parking_lot to 0.10. [#332](https://github.com/paritytech/parity-common/pull/332) + ## [0.3.1] - 2019-01-06 - Updated features and feature dependencies. [#307](https://github.com/paritytech/parity-common/pull/307) diff --git a/kvdb-memorydb/Cargo.toml b/kvdb-memorydb/Cargo.toml index 2ba57bbc4..954a1e117 100644 --- a/kvdb-memorydb/Cargo.toml +++ b/kvdb-memorydb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvdb-memorydb" -version = "0.3.1" +version = "0.4.0" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "A key-value in-memory database that implements the `KeyValueDB` trait" @@ -8,9 +8,9 @@ license = "GPL-3.0" edition = "2018" [dependencies] -parity-util-mem = { path = "../parity-util-mem", version = "0.4", default-features = false, features = ["std"] } -parking_lot = "0.9.0" -kvdb = { version = "0.3", path = "../kvdb" } +parity-util-mem = { path = "../parity-util-mem", version = "0.5", default-features = false, features = ["std"] } +parking_lot = "0.10.0" +kvdb = { version = "0.4", path = "../kvdb" } [dev-dependencies] -kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.1" } +kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.2" } diff --git a/kvdb-rocksdb/CHANGELOG.md b/kvdb-rocksdb/CHANGELOG.md index f7cd5a5e9..10710343c 100644 --- a/kvdb-rocksdb/CHANGELOG.md +++ b/kvdb-rocksdb/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.5.0] - 2019-02-05 +- Bump parking_lot to 0.10. [#332](https://github.com/paritytech/parity-common/pull/332 + ## [0.4.2] - 2019-02-04 ### Fixes - Fixed `iter_from_prefix` being slow. [#326](https://github.com/paritytech/parity-common/pull/326) diff --git a/kvdb-rocksdb/Cargo.toml b/kvdb-rocksdb/Cargo.toml index 797203ffe..2f67b8d99 100644 --- a/kvdb-rocksdb/Cargo.toml +++ b/kvdb-rocksdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvdb-rocksdb" -version = "0.4.2" +version = "0.5.0" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "kvdb implementation backed by RocksDB" @@ -15,19 +15,19 @@ harness = false smallvec = "1.0.0" fs-swap = "0.2.4" interleaved-ordered = "0.1.1" -kvdb = { path = "../kvdb", version = "0.3" } +kvdb = { path = "../kvdb", version = "0.4" } log = "0.4.8" num_cpus = "1.10.1" -parking_lot = "0.9.0" +parking_lot = "0.10.0" regex = "1.3.1" rocksdb = { version = "0.13", features = ["snappy"], default-features = false } owning_ref = "0.4.0" -parity-util-mem = { path = "../parity-util-mem", version = "0.4", default-features = false, features = ["std", "smallvec"] } +parity-util-mem = { path = "../parity-util-mem", version = "0.5", default-features = false, features = ["std", "smallvec"] } [dev-dependencies] alloc_counter = "0.0.4" criterion = "0.3" ethereum-types = { path = "../ethereum-types" } -kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.1" } +kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.2" } rand = "0.7.2" tempdir = "0.3.7" diff --git a/kvdb-shared-tests/Cargo.toml b/kvdb-shared-tests/Cargo.toml index 1b2158c3b..91259e851 100644 --- a/kvdb-shared-tests/Cargo.toml +++ b/kvdb-shared-tests/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "kvdb-shared-tests" -version = "0.1.0" +version = "0.2.0" authors = ["Parity Technologies "] edition = "2018" description = "Shared tests for kvdb functionality, to be executed against actual implementations" license = "GPL-3.0" [dependencies] -kvdb = { path = "../kvdb", version = "0.3" } +kvdb = { path = "../kvdb", version = "0.4" } diff --git a/kvdb-web/CHANGELOG.md b/kvdb-web/CHANGELOG.md index df4565ccf..69d10f44a 100644 --- a/kvdb-web/CHANGELOG.md +++ b/kvdb-web/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.4.0] - 2019-02-05 +- Bump parking_lot to 0.10. [#332](https://github.com/paritytech/parity-common/pull/332) + ## [0.3.1] - 2019-01-06 - Updated features and feature dependencies. [#307](https://github.com/paritytech/parity-common/pull/307) diff --git a/kvdb-web/Cargo.toml b/kvdb-web/Cargo.toml index ea77e5855..a686f6b26 100644 --- a/kvdb-web/Cargo.toml +++ b/kvdb-web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvdb-web" -version = "0.3.1" +version = "0.4.0" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "A key-value database for use in browsers" @@ -11,12 +11,12 @@ edition = "2018" [dependencies] wasm-bindgen = "0.2.54" js-sys = "0.3.31" -kvdb = { version = "0.3", path = "../kvdb" } -kvdb-memorydb = { version = "0.3", path = "../kvdb-memorydb" } +kvdb = { version = "0.4", path = "../kvdb" } +kvdb-memorydb = { version = "0.4", path = "../kvdb-memorydb" } futures = "0.3" log = "0.4.8" send_wrapper = "0.3.0" -parity-util-mem = { path = "../parity-util-mem", version = "0.4", default-features = false } +parity-util-mem = { path = "../parity-util-mem", version = "0.5", default-features = false } [dependencies.web-sys] version = "0.3.31" @@ -39,6 +39,6 @@ features = [ [dev-dependencies] console_log = "0.1.2" -kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.1" } +kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.2" } wasm-bindgen-test = "0.3.4" wasm-bindgen-futures = "0.4.4" diff --git a/kvdb/CHANGELOG.md b/kvdb/CHANGELOG.md index 4fcc88e95..e202aaa7a 100644 --- a/kvdb/CHANGELOG.md +++ b/kvdb/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.4.0] - 2019-01-06 +- Bump parking_lot to 0.10. [#332](https://github.com/paritytech/parity-common/pull/332) + ## [0.3.1] - 2019-01-06 - Updated features and feature dependencies. [#307](https://github.com/paritytech/parity-common/pull/307) diff --git a/kvdb/Cargo.toml b/kvdb/Cargo.toml index c176644ac..e6d738877 100644 --- a/kvdb/Cargo.toml +++ b/kvdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvdb" -version = "0.3.1" +version = "0.4.0" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "Generic key-value trait" @@ -10,4 +10,4 @@ edition = "2018" [dependencies] smallvec = "1.0.0" bytes = { package = "parity-bytes", version = "0.1", path = "../parity-bytes" } -parity-util-mem = { path = "../parity-util-mem", version = "0.4", default-features = false } +parity-util-mem = { path = "../parity-util-mem", version = "0.5", default-features = false } diff --git a/parity-util-mem/CHANGELOG.md b/parity-util-mem/CHANGELOG.md index 595632d79..b6f2dba48 100644 --- a/parity-util-mem/CHANGELOG.md +++ b/parity-util-mem/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.5.0] - 2019-02-05 +- Bump parking_lot to 0.10. [#332](https://github.com/paritytech/parity-common/pull/332 + ## [0.4.2] - 2020-02-04 - Implementation of `MallocSizeOf` for `BTreeSet`. [#325](https://github.com/paritytech/parity-common/pull/325) - Split off implementation of `MallocSizeOf` for `primitive-types`. [#323](https://github.com/paritytech/parity-common/pull/323) diff --git a/parity-util-mem/Cargo.toml b/parity-util-mem/Cargo.toml index 7cabe525b..02e0e222a 100644 --- a/parity-util-mem/Cargo.toml +++ b/parity-util-mem/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parity-util-mem" -version = "0.4.2" +version = "0.5.0" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "Collection of memory related utilities" @@ -25,7 +25,7 @@ impl-trait-for-tuples = "0.1.3" smallvec = { version = "1.0.0", optional = true } ethereum-types = { version = "0.8.0", optional = true, path = "../ethereum-types" } -parking_lot = { version = "0.9.0", optional = true } +parking_lot = { version = "0.10.0", optional = true } primitive-types = { version = "0.6", path = "../primitive-types", default-features = false, optional = true } [target.'cfg(target_os = "windows")'.dependencies]