summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleksandr Anyshchenko <oleksandr.anyshchenko@xdev.re>2019-11-14 17:43:48 +0200
committerGitHub <noreply@github.com>2019-11-14 17:43:48 +0200
commit3c810163091fb8d343a3fa8373edd4b5685ed84d (patch)
tree31ff84fb15b79b120c288d2fede0a28434721d9d
parent52ebdb5219b0559e0c0abd5144bbf490c627b90a (diff)
Release 0.13.0 (#351)v0.13.0
-rw-r--r--CHANGELOG.md22
-rw-r--r--Cargo.toml4
-rw-r--r--librocksdb-sys/Cargo.toml4
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 <t@jujit.su>", "David Greenberg <dsg123456789@gmail.com>"]
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 <karlhobley10@gmail.com>", "Arkadiy Paronyan <arkadiy@et
license = "MIT/Apache-2.0/BSD-3-Clause"
description = "Native bindings to librocksdb"
readme = "README.md"
-repository = "https://github.com/rust-rocksdb/rust-rocksdb.git"
-keywords = [ "ffi", "rocksdb" ]
+repository = "https://github.com/rust-rocksdb/rust-rocksdb"
+keywords = [ "bindings", "ffi", "rocksdb" ]
build = "build.rs"
links = "rocksdb"