summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Neely <t@jujit.su>2016-01-04 09:25:33 +0100
committerTyler Neely <t@jujit.su>2016-01-04 09:25:33 +0100
commit0f3a6891faa44a912e444151864970d0f8ea63be (patch)
treea2aebc6306d76dd69ce467b550b2540225e999fb
parent8dffaa356a1079fc5e597f5d1218f2ed2fd1fe55 (diff)
Bump version to 0.3.0.v0.3.0
-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 08e69ad..ca0482c 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.2.2"
+version = "0.3.0"
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 202832f..39b7860 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.2.2 crate should work with the Rust 1.5 stable and nightly releases as of 12/8/15.
+This library has been tested against RocksDB 3.13.1 on linux and OSX. The 0.3.0 crate should work with the Rust 1.5 stable and nightly releases as of 1/4/16.
### status
- [x] basic open/put/get/delete/close
@@ -36,7 +36,7 @@ sudo make install
###### Cargo.toml
```rust
[dependencies]
-rocksdb = "0.2.2"
+rocksdb = "0.3.0"
```
###### Code
```rust