From 641fae60f63619ed5d0c9d9e4c4ea5a0ffa3e253 Mon Sep 17 00:00:00 2001 From: Andrew Kryczka Date: Mon, 11 Feb 2019 14:01:16 -0800 Subject: [PATCH] update history and bump version --- HISTORY.md | 4 ++++ include/rocksdb/version.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 0d1382092..b26450022 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,4 +1,8 @@ # Rocksdb Change Log +## 5.18.3 (2/11/2019) +### Bug Fixes +* Fix possible LSM corruption when both range deletions and subcompactions are used. The symptom of this corruption is L1+ files overlapping in the user key space. + ## 5.18.2 (01/31/2019) ### Public API Change * Change time resolution in FileOperationInfo. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 3e1d5e04c..24cef677f 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -6,7 +6,7 @@ #define ROCKSDB_MAJOR 5 #define ROCKSDB_MINOR 18 -#define ROCKSDB_PATCH 2 +#define ROCKSDB_PATCH 3 // 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