cut rocksdb version 0.10.0, librocksdb-sys 5.11.3.

master
Tyler Neely 7 years ago
parent 5970844cc0
commit 701669d076
No known key found for this signature in database
GPG Key ID: 23E6C4FBEAE5E4E3
  1. 35
      CHANGELOG.txt
  2. 4
      Cargo.toml
  3. 2
      librocksdb-sys/Cargo.toml
  4. 2
      librocksdb-sys/rocksdb
  5. 2
      librocksdb-sys/rocksdb_lib_sources.txt

@ -1,17 +1,32 @@
Changelog
=========
0.10.0 (2018-03-17)
~~~~~~~~~~~~~~~~~~~~
* Bump rocksdb to 5.11.3 (spacejam)
**New features**
* Link with system rocksdb and snappy libs through envvars (ozkriff)
**Breaking Changes**
* Fix reverse iteration from a given key (ongardie)
0.9.1 (2018-02-10)
~~~~~~~~~~~~~~~~~~~~
**New features**
**New features**
* SliceTransform support (spacejam)
0.9.0 (2018-02-10)
~~~~~~~~~~~~~~~~~~~~
**New features**
**New features**
* Allow creating iterators over prefixes (glittershark)
**Breaking Changes**
**Breaking Changes**
* Open cfs with options (garyttierney, rrichardson)
* Non-Associative merge ops (rrichardson)
@ -44,33 +59,39 @@ Changelog
0.7 (2017-07-26)
~~~~~~~~~~~~~~~~~~~~
**Breaking Changes**
**Breaking Changes**
* Bumped rocksdb to 5.4.6 (derekdreery)
* Remove `use_direct_writes` now that `use_direct_io_for_flush_and_compaction` exists (derekdreery)
**New features**
**New features**
* ReadOptions is now public (rschmukler)
* Implement Clone and AsRef<str> for Error (daboross)
* Support for `seek_for_prev` (kaedroho)
* Support for DirectIO (kaedroho)
**Internal cleanups**
**Internal cleanups**
* Fixed race condition in tests (debris)
* Move tests to the default `tests` directory (vmx)
0.6.1 (2017-03-13)
~~~~~~~~~~~~~~~~~~
**New features**
**New features**
* Support for raw iterator access (kaedroho)
0.6 (2016-12-18)
~~~~~~~~~~~~~~~~~~~~
**Breaking changes**
* Comparator function now returns an Ordering (alexreg)
**New features**
* Compaction filter (tmccombs)
* Support for backups (alexreg)

@ -1,7 +1,7 @@
[package]
name = "rocksdb"
description = "Rust wrapper for Facebook's RocksDB embeddable database"
version = "0.9.1"
version = "0.10.0"
authors = ["Tyler Neely <t@jujit.su>", "David Greenberg <dsg123456789@gmail.com>"]
license = "Apache-2.0"
keywords = ["database", "embedded", "LSM-tree", "persistence"]
@ -19,4 +19,4 @@ valgrind = []
[dependencies]
libc = "0.2"
librocksdb-sys = { path = "librocksdb-sys", version = "5.10.2" }
librocksdb-sys = { path = "librocksdb-sys", version = "5.11.3" }

@ -1,6 +1,6 @@
[package]
name = "librocksdb-sys"
version = "5.10.2"
version = "5.11.3"
authors = ["Karl Hobley <karlhobley10@gmail.com>", "Arkadiy Paronyan <arkadiy@ethcore.io>"]
license = "MIT/Apache-2.0/BSD-3-Clause"
description = "Native bindings to librocksdb"

@ -1 +1 @@
Subproject commit 7ac544656d1de78c4da09f1e347ab0782308935c
Subproject commit dbd8fa09b823826dd2a30bc119dad7a6fa9a4c6d

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save