From fdb3125547b12883fedc31ef111ffb33d8934d26 Mon Sep 17 00:00:00 2001 From: Yanqin Jin Date: Mon, 10 Jan 2022 11:31:18 -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 d12b1ba44..60850d6d7 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,4 +1,8 @@ # Rocksdb Change Log +## 6.28.1 (2022-01-10) +### Bug Fixes +* Fixed compilation errors on newer compiler, e.g. clang-12 + ## 6.28.0 (2021-12-17) ### New Features * Introduced 'CommitWithTimestamp' as a new tag. Currently, there is no API for user to trigger a write with this tag to the WAL. This is part of the efforts to support write-commited transactions with user-defined timestamps. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 9c61bebdb..41519fb6c 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -11,7 +11,7 @@ #define ROCKSDB_MAJOR 6 #define ROCKSDB_MINOR 28 -#define ROCKSDB_PATCH 0 +#define ROCKSDB_PATCH 1 // 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