From 3c810163091fb8d343a3fa8373edd4b5685ed84d Mon Sep 17 00:00:00 2001 From: Oleksandr Anyshchenko Date: Thu, 14 Nov 2019 17:43:48 +0200 Subject: [PATCH] Release 0.13.0 (#351) --- CHANGELOG.md | 22 ++++++++++++++++++---- Cargo.toml | 4 ++-- librocksdb-sys/Cargo.toml | 4 ++-- 3 files changed, 22 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ed1e42..34e3563 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,25 @@ ## Unreleased -### Added +## 0.13.0 (2019-11-12) -* `DB::get_updates_since()` to iterate write batches in a given sequence (nlfiedler). -* `ReadOptions::set_tailing()` to create a tailing iterator that continues to iterate over the database as new records are added. +### Changes + +* Added `ReadOptions::set_verify_checksums` and + `Options::set_level_compaction_dynamic_level_bytes` methods (ordian) +* Array of bytes has been changed for pinnable slice for get operations (nbdd0121) +* Implemented `Sync` for `DBRawIterator` (nbdd0121) +* Removed extra copy in DBRawIterator (nbdd0121) +* Added `Options::max_dict_bytes` and `Options::zstd_max_training_bytes` methods(methyl) +* Added Android support (rtsisyk) +* Added lifetimes for `DBIterator` return types (ngotchac) +* Bumped rocksdb up to 6.2.4 (aleksuss) +* Disabled trait derivation for librocksdb-sys (EyeOfPython) +* Added `DB::get_updates_since()` to iterate write batches in a given sequence (nlfiedler) +* Added `ReadOptions::set_tailing()` to create a tailing iterator that continues to + iterate over the database as new records are added (cjbradfield) +* Changed column families storing (aleksuss) +* Exposed the `status` method on iterators (rnarubin) ## 0.12.3 (2019-07-19) @@ -17,7 +32,6 @@ * Added `Sync` and `Send` implementations to `Snapshot` (pavel-mukhanov) * Added `raw_iterator_cf_opt` to the DB API (rnarubin) * Added `DB::latest_sequence_number` method (vitvakatu) -* Changed column families storing (aleksuss) ## 0.12.2 (2019-05-03) diff --git a/Cargo.toml b/Cargo.toml index 1431968..ff727c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "rocksdb" description = "Rust wrapper for Facebook's RocksDB embeddable database" -version = "0.12.3" +version = "0.13.0" authors = ["Tyler Neely ", "David Greenberg "] license = "Apache-2.0" keywords = ["database", "embedded", "LSM-tree", "persistence"] -homepage = "https://github.com/spacejam/rust-rocksdb" +homepage = "https://github.com/rust-rocksdb/rust-rocksdb" exclude = [ ".gitignore", ".travis.yml", diff --git a/librocksdb-sys/Cargo.toml b/librocksdb-sys/Cargo.toml index 6ae78e4..96757ba 100644 --- a/librocksdb-sys/Cargo.toml +++ b/librocksdb-sys/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Karl Hobley ", "Arkadiy Paronyan