From 4c395d3a86955d1fe0b530beea2f8d54b7b15822 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Tue, 29 Aug 2017 16:56:31 +0200 Subject: [PATCH] use new version of librocksdb-sys, targeting rocksdb 5.6.1 --- CHANGELOG.txt | 5 +++++ Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 2b97108..cfcae4b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,11 @@ Changelog ========= +0.7.1 (2017-08-29) +~~~~~~~~~~~~~~~~~~~~ + * Bumped rocksdb to 5.6.1 (vmx) + + 0.7 (2017-07-26) ~~~~~~~~~~~~~~~~~~~~ diff --git a/Cargo.toml b/Cargo.toml index a26b6aa..dcd1b6c 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.7.0" +version = "0.7.1" 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.5.0" } +librocksdb-sys = { path = "librocksdb-sys", version = "5.6.1" }