]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Update HISTORY and bump version
authorYanqin Jin <yanqin@fb.com>
Tue, 20 Apr 2021 03:30:06 +0000 (20:30 -0700)
committerYanqin Jin <yanqin@fb.com>
Tue, 20 Apr 2021 03:30:06 +0000 (20:30 -0700)
HISTORY.md
include/rocksdb/version.h

index 044986ff89f0ca4727cf4150f8e3f60ea46d087e..2588220ef982f46ca685374a0770ceadf8bfb820 100644 (file)
@@ -1,8 +1,4 @@
 # Rocksdb Change Log
-## Unreleased
-### Bug Fixes
-* Fixed a bug in handling file rename error in distributed/network file systems when the server succeeds but client returns error. The bug can cause CURRENT file to point to non-existing MANIFEST file, thus DB cannot be opened.
-
 ## 6.20.0 (04/16/2021)
 ### Behavior Changes
 * `ColumnFamilyOptions::sample_for_compression` now takes effect for creation of all block-based tables. Previously it only took effect for block-based tables created by flush.
@@ -17,6 +13,7 @@
 * Fixed crash (divide by zero) when compression dictionary is applied to a file containing only range tombstones.
 * Fixed a backward iteration bug with partitioned filter enabled: not including the prefix of the last key of the previous filter partition in current filter partition can cause wrong iteration result.
 * Fixed a bug that allowed `DBOptions::max_open_files` to be set with a non-negative integer with `ColumnFamilyOptions::compaction_style = kCompactionStyleFIFO`.
+* Fixed a bug in handling file rename error in distributed/network file systems when the server succeeds but client returns error. The bug can cause CURRENT file to point to non-existing MANIFEST file, thus DB cannot be opened.
 
 ### Performance Improvements
 * On ARM platform, use `yield` instead of `wfe` to relax cpu to gain better performance.
index ef3faba2a0872ae588600bd8d4100e434e72259a..83eb9ed96d67fa835e900b3b601c5f868e2a47ca 100644 (file)
@@ -11,7 +11,7 @@
 
 #define ROCKSDB_MAJOR 6
 #define ROCKSDB_MINOR 20
-#define ROCKSDB_PATCH 0
+#define ROCKSDB_PATCH 1
 
 // Do not use these. We made the mistake of declaring macros starting with
 // double underscore. Now we have to live with our choice. We'll deprecate these