diff --git a/kvdb-rocksdb/CHANGELOG.md b/kvdb-rocksdb/CHANGELOG.md index d673404cb..243bb5885 100644 --- a/kvdb-rocksdb/CHANGELOG.md +++ b/kvdb-rocksdb/CHANGELOG.md @@ -5,9 +5,10 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ ## [Unreleased] -- use `get_pinned` API to save one allocation for each call to `get()` (See [PR #274](https://github.com/paritytech/parity-common/pull/274) for details) -- rename `drop_column` to `remove_last_column` (See [PR #274](https://github.com/paritytech/parity-common/pull/274) for details) -- rename `get_cf` to `cf` (See [PR #274](https://github.com/paritytech/parity-common/pull/274) for details) +- Use `get_pinned` API to save one allocation for each call to `get()` (See [PR #274](https://github.com/paritytech/parity-common/pull/274) for details) +- Rename `drop_column` to `remove_last_column` (See [PR #274](https://github.com/paritytech/parity-common/pull/274) for details) +- Rename `get_cf` to `cf` (See [PR #274](https://github.com/paritytech/parity-common/pull/274) for details) +- Updated dependencies (See [PR #281](https://github.com/paritytech/parity-common/pull/281) for details) ## [0.2.0] - 2019-11-28 - Switched away from using [parity-rocksdb](https://crates.io/crates/parity-rocksdb) in favour of upstream [rust-rocksdb](https://crates.io/crates/rocksdb) (see [PR #257](https://github.com/paritytech/parity-common/pull/257) for details) diff --git a/kvdb-rocksdb/Cargo.toml b/kvdb-rocksdb/Cargo.toml index 2049da4ba..59cb9922b 100644 --- a/kvdb-rocksdb/Cargo.toml +++ b/kvdb-rocksdb/Cargo.toml @@ -12,7 +12,7 @@ name = "bench_read_perf" harness = false [dependencies] -elastic-array = "0.10.2" +elastic-array = "0.11.0" fs-swap = "0.2.4" interleaved-ordered = "0.1.1" kvdb = { path = "../kvdb", version = "0.1" } diff --git a/kvdb/CHANGELOG.md b/kvdb/CHANGELOG.md index 565fdccf3..e8cf59f0b 100644 --- a/kvdb/CHANGELOG.md +++ b/kvdb/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ ## [Unreleased] +- Updated dependencies (See [PR #281](https://github.com/paritytech/parity-common/pull/281) for details) ## [0.1.1] - 2019-10-24 ### Dependencies diff --git a/kvdb/Cargo.toml b/kvdb/Cargo.toml index db7badb98..a744baa28 100644 --- a/kvdb/Cargo.toml +++ b/kvdb/Cargo.toml @@ -8,5 +8,5 @@ license = "GPL-3.0" edition = "2018" [dependencies] -elastic-array = "0.10.2" +elastic-array = "0.11.0" bytes = { package = "parity-bytes", version = "0.1", path = "../parity-bytes" } diff --git a/parity-util-mem/CHANGELOG.md b/parity-util-mem/CHANGELOG.md index 8f69530b7..b75957398 100644 --- a/parity-util-mem/CHANGELOG.md +++ b/parity-util-mem/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ ## [Unreleased] +- Updated dependencies (See [PR #281](https://github.com/paritytech/parity-common/pull/281) for details) ## [0.2.1] - 2019-10-24 ### Dependencies diff --git a/parity-util-mem/Cargo.toml b/parity-util-mem/Cargo.toml index cf3dab6f5..cd32ef6fb 100644 --- a/parity-util-mem/Cargo.toml +++ b/parity-util-mem/Cargo.toml @@ -20,7 +20,7 @@ wee_alloc = { version = "0.4.5", optional = true } mimallocator = { version = "0.1.3", features = ["secure"], optional = true } mimalloc-sys = { version = "0.1.6", optional = true } -elastic-array = { version = "0.10.2", optional = true } +elastic-array = { version = "0.11.0", optional = true } ethereum-types = { version = "0.8.0", optional = true, path = "../ethereum-types" } parking_lot = { version = "0.9.0", optional = true }