From f9e0a0651244f9cea60e9fffadb73c27ee850ff5 Mon Sep 17 00:00:00 2001 From: Andrew Kryczka Date: Wed, 6 Jun 2018 11:16:32 -0700 Subject: [PATCH] update history and 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 ca32503c89d..2b93f60d7be 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,4 +1,8 @@ # Rocksdb Change Log +## 5.13.3 (6/6/2018) +### Bug Fixes +* Fix assertion when reading bloom filter of SST files containing range deletions but no data + ## 5.13.2 (5/25/2018) ### Public API Change * Introduced `CompressionOptions::kDefaultCompressionLevel`, which is a generic way to tell RocksDB to use the compression library's default level. It is now the default value for `CompressionOptions::level`. Previously the level defaulted to -1, which gave poor compression ratios in ZSTD. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index c98200ac297..9d089ab7f4c 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -6,7 +6,7 @@ #define ROCKSDB_MAJOR 5 #define ROCKSDB_MINOR 13 -#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