diff --git a/CHANGELOG.txt b/CHANGELOG.txt index ea2bd2d..8c973f7 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,18 @@ Changelog ========= +0.10.1 (2018-07-17) +~~~~~~~~~~~~~~~~~~~~ + * bump bindgen to 0.37 (ekmartin) + * bump rocksdb to 5.14.2 (ekmartin) + * add disable_cache to block-based options (ekmartin) + * add set_wal_dir (ekmartin) + * add set_memtable_prefix_bloom_ratio (ekmartin) + * add MemtableFactory support (ekmartin) + * add full_iterator (ekmartin) + * allow index type specification on block options (ekmartin) + * fix windows build (iSynaptic) + 0.10.0 (2018-03-17) ~~~~~~~~~~~~~~~~~~~~ * Bump rocksdb to 5.11.3 (spacejam) diff --git a/Cargo.toml b/Cargo.toml index 4e4f4e5..e05c54c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rocksdb" description = "Rust wrapper for Facebook's RocksDB embeddable database" -version = "0.10.0" +version = "0.10.1" authors = ["Tyler Neely ", "David Greenberg "] license = "Apache-2.0" keywords = ["database", "embedded", "LSM-tree", "persistence"]