master
Tyler Neely 7 years ago
parent dc445fd2f4
commit 9002fbda95
No known key found for this signature in database
GPG Key ID: 23E6C4FBEAE5E4E3
  1. 8
      CHANGELOG.txt
  2. 4
      Cargo.toml
  3. 2
      librocksdb-sys/Cargo.toml

@ -1,12 +1,18 @@
Changelog Changelog
========= =========
0.7 (in development) 0.7 (2017-07-26)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
**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) * ReadOptions is now public (rschmukler)
* Implement Clone and AsRef<str> for Error (daboross) * 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) * Fixed race condition in tests (debris)

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

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

Loading…
Cancel
Save