diff --git a/HISTORY.md b/HISTORY.md index 3ad872c63..07e22a6c9 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,10 @@ # Rocksdb Change Log ## Unreleased +## 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. + ## 6.12.1 (2020-08-20) ### Bug fixes * BackupEngine::CreateNewBackup could fail intermittently with non-OK status when backing up a read-write DB configured with a DBOptions::file_checksum_gen_factory. This issue has been worked-around such that CreateNewBackup should succeed, but (until fully fixed) BackupEngine might not see all checksums available in the DB. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index fdf156e67..6f0ecd1f8 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 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