From f0cfc5d50e108b238124d2fbf0951fd13c224363 Mon Sep 17 00:00:00 2001 From: Jordan Terrell Date: Thu, 7 Mar 2019 08:10:48 -0600 Subject: [PATCH 1/2] Updated changelog to list recently merged functionality... --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfb36ae..94506bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 0.12.0 (Unreleased) + +### Changes + +* Added support for PlainTable factories (ekmartin) +* Added ability to restore latest backup (rohitjoshi) +* Added support for pinnable slices (xxuejie) +* Added ability to get property values (ekmartin) +* Simplified opening database when using non-default column families (iSynaptic) +* `ColumnFamily`, `DBIterator` and `DBRawIterator` now have lifetime parameters to prevent using them after the `DB` has been dropped (iSynaptic) +* Creating `DBIterator` and `DBRawIterator` now accept `ReadOptions` (iSynaptic) +* All database operations that accepted byte slices, `&[u8]`, are now generic and accept anything that implements `AsRef<[u8]>` (iSynaptic) +* Bumped RocksDB to version 5.17.2 (aleksuss) +* Added `set_readahead_size` to `ReadOptions` (iSynaptic) +* Updated main example in doc tests (mohanson) +* Updated requirements documentation (jamesray1) + + ## 0.11.0 (2019-01-10) ### Announcements From c78fa81b171ec9f90a7a42cae0ed22587e6d42dc Mon Sep 17 00:00:00 2001 From: Jordan Terrell Date: Fri, 8 Mar 2019 04:09:12 -0600 Subject: [PATCH 2/2] Updating changelog [skip ci] --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94506bd..e77b0fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ * Added `set_readahead_size` to `ReadOptions` (iSynaptic) * Updated main example in doc tests (mohanson) * Updated requirements documentation (jamesray1) +* Implemented `AsRef<[u8]>` for `DBVector` (iSynaptic) ## 0.11.0 (2019-01-10)