Commit 4f49919e authored by Tyler Neely's avatar Tyler Neely

Cut v0.0.6 with support for write batches, and fixes of several memory leaks.

parent c291b1ec
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
name = "rocksdb" name = "rocksdb"
description = "A Rust wrapper for Facebook's RocksDB embeddable database." description = "A Rust wrapper for Facebook's RocksDB embeddable database."
version = "0.0.5" version = "0.0.6"
authors = ["Tyler Neely <t@jujit.su>"] authors = ["Tyler Neely <t@jujit.su>"]
license = "Apache-2.0" license = "Apache-2.0"
......
...@@ -2,7 +2,7 @@ rust-rocksdb ...@@ -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) [![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 ###### Prerequisite: RocksDB
```bash ```bash
...@@ -15,7 +15,7 @@ sudo make install ...@@ -15,7 +15,7 @@ sudo make install
###### Cargo.toml ###### Cargo.toml
```rust ```rust
[dependencies] [dependencies]
rocksdb = "~0.0.5" rocksdb = "~0.0.6"
``` ```
###### Code ###### Code
```rust ```rust
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment