From 3e37a44cc134cdfd4e0353a1facb1c99d106403c Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Sat, 2 Sep 2017 10:33:27 +0200 Subject: [PATCH] bump rocksdb to 5.6.2, suppress warnings causing travis to abort --- CHANGELOG.txt | 5 +++++ Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index cfcae4b..db1c3aa 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,11 @@ Changelog ========= +0.7.2 (2017-09-02) +~~~~~~~~~~~~~~~~~~~~ + * Bumped rocksdb to 5.6.2 (spacejam) + + 0.7.1 (2017-08-29) ~~~~~~~~~~~~~~~~~~~~ * Bumped rocksdb to 5.6.1 (vmx) diff --git a/Cargo.toml b/Cargo.toml index dcd1b6c..77058ef 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.1" +version = "0.7.2" 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 = "5.6.1" } +librocksdb-sys = { path = "librocksdb-sys", version = "5.6.2" }