diff --git a/HISTORY.md b/HISTORY.md index 0e0b96143..9aab2033e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,13 +1,13 @@ # Rocksdb Change Log -## Unreleased +## 5.14.2 (7/3/2018) ### Bug Fixes * Change default value of `bytes_max_delete_chunk` to 0 in NewSstFileManager() as it doesn't work well with checkpoints. +* Set DEBUG_LEVEL=0 for RocksJava Mac Release build. ## 5.14.1 (6/20/2018) ### Bug Fixes * Fix block-based table reader pinning blocks throughout its lifetime, causing memory usage increase. * Fix bug with prefix search in partition filters where a shared prefix would be ignored from the later partitions. The bug could report an eixstent key as missing. The bug could be triggered if prefix_extractor is set and partition filters is enabled. -* Change default value of `bytes_max_delete_chunk` to 0 in NewSstFileManager() as it doesn't work well with checkpoints. ## 5.14.0 (5/16/2018) ### Public API Change diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 489f798c9..f2b55cf0a 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -6,7 +6,7 @@ #define ROCKSDB_MAJOR 5 #define ROCKSDB_MINOR 14 -#define ROCKSDB_PATCH 1 +#define ROCKSDB_PATCH 2 // 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