From 6ca40b78d4aea0e699244040a5a5afde1198e563 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Sat, 18 Jul 2015 08:33:34 -0700 Subject: [PATCH] Cut release 0.0.8 --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3137ad5..f4a15f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "rocksdb" description = "A Rust wrapper for Facebook's RocksDB embeddable database." -version = "0.0.7" +version = "0.0.8" authors = ["Tyler Neely ", "David Greenberg "] license = "Apache-2.0" exclude = [ diff --git a/README.md b/README.md index 922b426..4e0cb7a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ rust-rocksdb ============ [![Build Status](https://travis-ci.org/spacejam/rust-rocksdb.svg?branch=master)](https://travis-ci.org/spacejam/rust-rocksdb) -This library has been tested against RocksDB 3.8.1 on linux and OSX. The 0.0.7 crate should work with the Rust nightly release as of 7/16/15. +This library has been tested against RocksDB 3.8.1 on linux and OSX. The 0.0.8 crate should work with the Rust nightly release as of 7/18/15. ### status - [x] basic open/put/get/delete/close @@ -31,7 +31,7 @@ sudo make install ###### Cargo.toml ```rust [dependencies] -rocksdb = "~0.0.7" +rocksdb = "~0.0.8" ``` ###### Code ```rust