summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleksandr Anyshchenko <oleksandr.anyshchenko@xdev.re>2020-08-25 15:09:28 +0300
committerOleksandr Anyshchenko <oleksandr.anyshchenko@xdev.re>2020-08-25 15:28:41 +0300
commitb91299ca2e2278cd5ed0db35f5687fb5e37118cd (patch)
tree155a3278f01a60c36249ee4b78ae9c5ed32e2f38
parent959f29ef88964ec10078a4d30574c19e342c8e69 (diff)
Release 0.15.0 (#458)v0.15.0
-rw-r--r--CHANGELOG.md32
-rw-r--r--Cargo.toml2
2 files changed, 30 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 23334c6..1b603a1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,9 +2,35 @@
## [Unreleased]
-* Export the `DEFAULT_COLUMN_FAMILY_NAME` constant.
-* Implement `Clone` trait for `Options`.
-* Added `Send` implementation to `WriteBatch`.
+## 0.15.0 (2020-08-25)
+
+* Fix building rocksdb library on windows host (aleksuss)
+* Add github actions CI for windows build (aleksuss)
+* Update doc for Options::set_compression_type (wqfish)
+* Add clippy linter in CI (aleksuss)
+* Use DBPath for backup_restore test (wqfish)
+* Allow to build RocksDB with a different stdlib (calavera)
+* Add some doc-comments and tiny refactoring (aleksuss)
+* Expose `open_with_ttl`. (calavera)
+* Fixed build for `x86_64-linux-android` that doesn't support PCLMUL (vimmerru)
+* Add support for `SstFileWriter` and `DB::ingest_external_file` (methyl)
+* Add set_max_log_file_size and set_recycle_log_file_num to the Options (stanislav-tkach)
+* Export the `DEFAULT_COLUMN_FAMILY_NAME` constant (stanislav-tkach)
+* Fix slice transformers with no in_domain callback (nelhage)
+* Don't segfault on failed a merge operator (nelhage)
+* Adding read/write/db/compaction options (linxGnu)
+* Add dbpath and env options (linxGnu)
+* Add compaction filter factory API (unrealhoang)
+* Add link stdlib when linking prebuilt rocksdb (unrealhoang)
+* Support fetching sst files metadata, delete files in range, get mem usage (linxGnu)
+* Do not set rerun-if-changed=build.rs (xu-cheng)
+* Use pretty_assertions in tests (stanislav-tkach)
+* librocksdb-sys: update rocksdb to 6.11.4 (ordian)
+* Adding backup engine info (linxGnu)
+* Implement `Clone` trait for `Options` (stanislav-tkach)
+* Added `Send` implementation to `WriteBatch` (stanislav-tkach)
+* Extend github actions (stanislav-tkach)
+* Avoid copy for merge operator result using delete_callback (xuchen-plus)
## 0.14.0 (2020-04-22)
diff --git a/Cargo.toml b/Cargo.toml
index 2cb7bd3..9531f14 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.14.0"
+version = "0.15.0"
edition = "2018"
authors = ["Tyler Neely <t@jujit.su>", "David Greenberg <dsg123456789@gmail.com>"]
repository = "https://github.com/rust-rocksdb/rust-rocksdb"