From f103aadad96a5206903f6db2b0e24595426a2a36 Mon Sep 17 00:00:00 2001 From: Peter Dillinger Date: Mon, 31 Jan 2022 10:08:43 -0800 Subject: [PATCH] Update version to 6.29.1 Summary: update version to 6.29.1 for bug fix --- HISTORY.md | 2 +- include/rocksdb/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 4d644d543..d3b49ffff 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,5 @@ # Rocksdb Change Log -## Unreleased +## 6.29.1 (01/31/2022) ### Bug Fixes * Fixed a major bug in which batched MultiGet could return old values for keys deleted by DeleteRange when memtable Bloom filter is enabled (memtable_prefix_bloom_size_ratio > 0). (The fix includes a substantial MultiGet performance improvement in the unusual case of both memtable_whole_key_filtering and prefix_extractor.) diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 07c3ca3b4..1a190c8b6 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -11,7 +11,7 @@ #define ROCKSDB_MAJOR 6 #define ROCKSDB_MINOR 29 -#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