From: Yanqin Jin Date: Thu, 2 Jan 2020 20:33:36 +0000 (-0800) Subject: Update HISTORY and bump up version number X-Git-Tag: v6.6.3~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4fc5e6c17748392acb411df4b6b6b420dd2a41e2;p=rocksdb.git Update HISTORY and bump up version number --- diff --git a/HISTORY.md b/HISTORY.md index 1ccb15a1..d14b0ef3 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,6 +6,8 @@ * BlobDB no longer updates the SST to blob file mapping upon failed compactions. * Fix a bug in which a snapshot read through an iterator could be affected by a DeleteRange after the snapshot (#6062). * Fixed a bug where BlobDB was comparing the `ColumnFamilyHandle` pointers themselves instead of only the column family IDs when checking whether an API call uses the default column family or not. +* Delete superversions in BackgroundCallPurge. +* Fix use-after-free and double-deleting files in BackgroundCallPurge(). ## 6.6.0 (11/25/2019) ### Bug Fixes diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 24a05278..6684894d 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -6,7 +6,7 @@ #define ROCKSDB_MAJOR 6 #define ROCKSDB_MINOR 6 -#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