From 53da6045805f188ec9a48e289d49a8343e9ac9ac Mon Sep 17 00:00:00 2001 From: Andrew Kryczka Date: Wed, 4 Aug 2021 17:27:29 -0700 Subject: [PATCH] update HISTORY.md and version.h for 6.23.3 --- HISTORY.md | 2 +- include/rocksdb/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index dc35ec9f1..c4cdd6dfd 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,5 @@ # Rocksdb Change Log -## Unreleased +## 6.23.3 (2021-08-04) ### Bug Fixes * Removed a call to `RenameFile()` on a non-existent info log file ("LOG") when opening a new DB. Such a call was guaranteed to fail though did not impact applications since we swallowed the error. Now we also stopped swallowing errors in renaming "LOG" file. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index c73de4a87..133b15fb9 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -11,7 +11,7 @@ #define ROCKSDB_MAJOR 6 #define ROCKSDB_MINOR 23 -#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