diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f74f7da..2b97108 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,12 +1,18 @@ 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** * ReadOptions is now public (rschmukler) * Implement Clone and AsRef for Error (daboross) + * Support for `seek_for_prev` (kaedroho) + * Support for DirectIO (kaedroho) **Internal cleanups** * Fixed race condition in tests (debris) diff --git a/Cargo.toml b/Cargo.toml index a0c1a11..a26b6aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rocksdb" description = "Rust wrapper for Facebook's RocksDB embeddable database" -version = "0.6.1" +version = "0.7.0" authors = ["Tyler Neely ", "David Greenberg "] 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 = "0.4.1" } +librocksdb-sys = { path = "librocksdb-sys", version = "0.5.0" } diff --git a/librocksdb-sys/Cargo.toml b/librocksdb-sys/Cargo.toml index df7f6a0..a47645a 100644 --- a/librocksdb-sys/Cargo.toml +++ b/librocksdb-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librocksdb-sys" -version = "0.4.1" +version = "0.5.0" authors = ["Karl Hobley ", "Arkadiy Paronyan "] license = "MIT/Apache-2.0/BSD-3-Clause" description = "Native bindings to librocksdb"