summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Neely <t@jujit.su>2016-05-01 16:48:29 -0700
committerTyler Neely <t@jujit.su>2016-05-01 16:48:29 -0700
commit8d0024e95f188eec085e5312982850aa90c64055 (patch)
treecfc9d527048c3f8687e4357b58d6037ba53dcc29
parent3e83c6d869278bb97aede5b3a6ef03c92d1d36de (diff)
bump to 0.3.3v0.3.4v0.3.3
-rw-r--r--Cargo.toml2
-rw-r--r--README.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 915df2b..49fc4f9 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.3.2"
+version = "0.3.3"
authors = ["Tyler Neely <t@jujit.su>", "David Greenberg <dsg123456789@gmail.com>"]
license = "Apache-2.0"
keywords = ["database", "embedded", "LSM-tree", "persistence"]
diff --git a/README.md b/README.md
index 5d96e40..457dcc2 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ rust-rocksdb
[![Build Status](https://travis-ci.org/spacejam/rust-rocksdb.svg?branch=master)](https://travis-ci.org/spacejam/rust-rocksdb)
[![crates.io](http://meritbadge.herokuapp.com/rocksdb)](https://crates.io/crates/rocksdb)
-This library has been tested against RocksDB 3.13.1 on linux and OSX. The 0.3.2 crate should work with the Rust 1.5 stable and nightly releases as of 5/1/16.
+This library has been tested against RocksDB 3.13.1 on linux and OSX. The 0.3.3 crate should work with the Rust 1.5 stable and nightly releases as of 5/1/16.
### status
- [x] basic open/put/get/delete/close
@@ -36,7 +36,7 @@ sudo make install
###### Cargo.toml
```rust
[dependencies]
-rocksdb = "0.3.2"
+rocksdb = "0.3.3"
```
###### Code
```rust