summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Neely <t@jujit.su>2016-07-01 17:20:04 -0700
committerTyler Neely <t@jujit.su>2016-07-01 17:20:04 -0700
commit2558762a916dfb6d58a71bb83d9a201fa32ac1f5 (patch)
treed7768c1af1efa93e97313bb1c37dc3cc385c2b90
parentfea624461b09e4d6d9584c659846a3bc46d00f80 (diff)
bump to 0.4.1v0.4.1
-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 8091237..bdfeb27 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.4.0"
+version = "0.4.1"
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 8f34cf3..af31e8f 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.4.0 crate should work with the Rust 1.9 stable and nightly releases as of 7/1/16.
+This library has been tested against RocksDB 3.13.1 on linux and OSX. The 0.4.1 crate should work with the Rust 1.9 stable and nightly releases as of 7/1/16.
### status
- [x] basic open/put/get/delete/close
@@ -36,7 +36,7 @@ sudo make install
###### Cargo.toml
```rust
[dependencies]
-rocksdb = "0.4.0"
+rocksdb = "0.4.1"
```
###### Code
```rust