Merge pull request #242 from rust-rocksdb/0.11

Release v0.11
master
Jordan Terrell 6 years ago committed by GitHub
commit 4046283124
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 4
      Cargo.toml
  3. 2
      librocksdb-sys/Cargo.toml

@ -1,6 +1,6 @@
# Changelog
## 0.11.0 (Unreleased)
## 0.11.0 (2018-01-10)
### Announcements
@ -25,6 +25,7 @@
* exposed `set_skip_stats_update_on_db_open` option (romanz)
* exposed `keep_log_file_num` option (romanz)
* added ability to retrieve `WriteBatch` serialized size (romanz)
* added `set_options` method to `DB` to allow changing options without closing and re-opening the database (romanz)
## 0.10.1 (2018-07-17)

@ -1,7 +1,7 @@
[package]
name = "rocksdb"
description = "Rust wrapper for Facebook's RocksDB embeddable database"
version = "0.10.1"
version = "0.11.0"
authors = ["Tyler Neely <t@jujit.su>", "David Greenberg <dsg123456789@gmail.com>"]
license = "Apache-2.0"
keywords = ["database", "embedded", "LSM-tree", "persistence"]
@ -25,4 +25,4 @@ bzip2 = ["librocksdb-sys/bzip2"]
[dependencies]
libc = "0.2"
librocksdb-sys = { path = "librocksdb-sys", version = "5.14.2" }
librocksdb-sys = { path = "librocksdb-sys", version = "5.14.3" }

@ -1,6 +1,6 @@
[package]
name = "librocksdb-sys"
version = "5.14.2"
version = "5.14.3"
authors = ["Karl Hobley <karlhobley10@gmail.com>", "Arkadiy Paronyan <arkadiy@ethcore.io>"]
license = "MIT/Apache-2.0/BSD-3-Clause"
description = "Native bindings to librocksdb"

Loading…
Cancel
Save