From fad041f2109d849a1c3fd9f8eee672139a843081 Mon Sep 17 00:00:00 2001 From: Andrew Kryczka Date: Wed, 16 Sep 2020 09:39:59 -0700 Subject: [PATCH] update HISTORY.md and version.h for 6.12.3 --- HISTORY.md | 4 ++++ include/rocksdb/version.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 07e22a6c9..c02fe0a60 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,10 @@ # Rocksdb Change Log ## Unreleased +## 6.12.3 (2020-09-16) +### Bug fixes +* Fixed a bug in size-amp-triggered and periodic-triggered universal compaction, where the compression settings for the first input level were used rather than the compression settings for the output (bottom) level. + ## 6.12.2 (2020-09-14) ### Public API Change * BlobDB now exposes the start of the expiration range of TTL blob files via the `GetLiveFilesMetaData` API. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 6f0ecd1f8..a5eb321ec 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -6,7 +6,7 @@ #define ROCKSDB_MAJOR 6 #define ROCKSDB_MINOR 12 -#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