From ce770c5711437352bfb73d3daaeefb9d38ae2d42 Mon Sep 17 00:00:00 2001 From: David Palm Date: Wed, 11 Dec 2019 17:38:32 +0100 Subject: [PATCH 1/2] Update elastic-array to 0.11.0 --- kvdb-rocksdb/Cargo.toml | 4 ++-- kvdb/CHANGELOG.md | 5 +++++ kvdb/Cargo.toml | 4 ++-- parity-util-mem/Cargo.toml | 4 ++-- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/kvdb-rocksdb/Cargo.toml b/kvdb-rocksdb/Cargo.toml index 2049da4ba..37f33c4bc 100644 --- a/kvdb-rocksdb/Cargo.toml +++ b/kvdb-rocksdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvdb-rocksdb" -version = "0.2.0" +version = "0.2.1" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "kvdb implementation backed by rocksDB" @@ -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..ccd89ab93 100644 --- a/kvdb/CHANGELOG.md +++ b/kvdb/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.1.2] - 2019-12-11 +### Dependencies +- Updated dependencies (https://github.com/paritytech/parity-common/pull/239) +### Changed +- Migrated to 2018 edition (https://github.com/paritytech/parity-common/pull/205) ## [0.1.1] - 2019-10-24 ### Dependencies - Updated dependencies (https://github.com/paritytech/parity-common/pull/239) diff --git a/kvdb/Cargo.toml b/kvdb/Cargo.toml index db7badb98..a91e885c5 100644 --- a/kvdb/Cargo.toml +++ b/kvdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvdb" -version = "0.1.1" +version = "0.1.2" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "Generic key-value trait" @@ -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/Cargo.toml b/parity-util-mem/Cargo.toml index cf3dab6f5..622f607f6 100644 --- a/parity-util-mem/Cargo.toml +++ b/parity-util-mem/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parity-util-mem" -version = "0.2.1" +version = "0.2.2" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "Collection of memory related utilities" @@ -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 } From 8e24f852ddf8066a0ecd444ade377389d7dafb29 Mon Sep 17 00:00:00 2001 From: David Palm Date: Wed, 11 Dec 2019 17:50:26 +0100 Subject: [PATCH 2/2] Don't rush the release --- kvdb-rocksdb/CHANGELOG.md | 7 ++++--- kvdb-rocksdb/Cargo.toml | 2 +- kvdb/CHANGELOG.md | 6 +----- kvdb/Cargo.toml | 2 +- parity-util-mem/CHANGELOG.md | 1 + parity-util-mem/Cargo.toml | 2 +- 6 files changed, 9 insertions(+), 11 deletions(-) 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 37f33c4bc..59cb9922b 100644 --- a/kvdb-rocksdb/Cargo.toml +++ b/kvdb-rocksdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvdb-rocksdb" -version = "0.2.1" +version = "0.2.0" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "kvdb implementation backed by rocksDB" diff --git a/kvdb/CHANGELOG.md b/kvdb/CHANGELOG.md index ccd89ab93..e8cf59f0b 100644 --- a/kvdb/CHANGELOG.md +++ b/kvdb/CHANGELOG.md @@ -5,12 +5,8 @@ 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.2] - 2019-12-11 -### Dependencies -- Updated dependencies (https://github.com/paritytech/parity-common/pull/239) -### Changed -- Migrated to 2018 edition (https://github.com/paritytech/parity-common/pull/205) ## [0.1.1] - 2019-10-24 ### Dependencies - Updated dependencies (https://github.com/paritytech/parity-common/pull/239) diff --git a/kvdb/Cargo.toml b/kvdb/Cargo.toml index a91e885c5..a744baa28 100644 --- a/kvdb/Cargo.toml +++ b/kvdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvdb" -version = "0.1.2" +version = "0.1.1" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "Generic key-value trait" 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 622f607f6..cd32ef6fb 100644 --- a/parity-util-mem/Cargo.toml +++ b/parity-util-mem/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parity-util-mem" -version = "0.2.2" +version = "0.2.1" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/parity-common" description = "Collection of memory related utilities"