diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a79207..c6c487d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ ## [Unreleased] +## 0.21.0 (2023-05-09) + +* Add doc-check to CI with fix warnings in docs (YuraKotov) +* Fix rustdoc::broken-intra-doc-links errors (YuraKotov) +* Fix 32-bit ARM build (EyeOfPython) +* Allow specifying checksum type (romanz) +* Enable librocksdb-sys to be built by rustc_codegen_cranelift (ZePedroResende) +* Update to RocksDB 8.0.0 (niklasf) +* Block cache creation failure is not recoverable (niklasf) +* Update iOS min version to 12 in the build script (mighty840) +* Actually enable `io-uring` (niklasf) +* Update to RocksDB 8.1.1 (niklasf) +* Add `Cache::new_hyper_clock_cache()` (niklasf) +* Retrieve Value from KeyMayExist if value found in Cache or Memory (Congyuwang) +* Support for comparators as closures (pegesund) +* Fix bug in DBWALIterator that would miss updates (Zagitta) + ## 0.20.1 (2023-02-10) * Fix supporting MSRV 1.60.0 (aleksuss) diff --git a/Cargo.toml b/Cargo.toml index 4c8d5dd..bab5dcb 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.20.1" +version = "0.21.0" edition = "2018" rust-version = "1.60" authors = ["Tyler Neely ", "David Greenberg "] diff --git a/librocksdb-sys/Cargo.toml b/librocksdb-sys/Cargo.toml index da0a172..84766d4 100644 --- a/librocksdb-sys/Cargo.toml +++ b/librocksdb-sys/Cargo.toml @@ -38,6 +38,6 @@ uuid = { version = "1.0", features = ["v4"] } [build-dependencies] cc = { version = "1.0", features = ["parallel"] } -bindgen = { version = "0.64", default-features = false, features = ["runtime"] } +bindgen = { version = "0.65", default-features = false, features = ["runtime"] } glob = "0.3" pkg-config = { version = "0.3", optional = true }