From 4f49919ebed41d614164594444557cf08defa840 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Sun, 12 Jul 2015 01:24:16 -0700 Subject: [PATCH] Cut v0.0.6 with support for write batches, and fixes of several memory leaks. --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c7c119e..90b2015 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.5" +version = "0.0.6" authors = ["Tyler Neely "] license = "Apache-2.0" diff --git a/README.md b/README.md index 77a4ba3..f9bd103 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.5 crate should work with the Rust nightly release as of 7/1/15. +This library has been tested against RocksDB 3.8.1 on linux and OSX. The 0.0.6 crate should work with the Rust nightly release as of 7/12/15. ###### Prerequisite: RocksDB ```bash @@ -15,7 +15,7 @@ sudo make install ###### Cargo.toml ```rust [dependencies] -rocksdb = "~0.0.5" +rocksdb = "~0.0.6" ``` ###### Code ```rust