From: Peter Dillinger Date: Tue, 2 Aug 2022 19:56:55 +0000 (-0700) Subject: Update HISTORY and version.h for 7.4.5 X-Git-Tag: v7.4.5^0 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e072c129d57a0883370034cecf6774c745c40f76;p=rocksdb.git Update HISTORY and version.h for 7.4.5 --- diff --git a/HISTORY.md b/HISTORY.md index 40f7ad411..306f7cd35 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,5 @@ # Rocksdb Change Log -## Unreleased +## 7.4.5 (08/02/2022) ### Bug Fixes * Fix a bug starting in 7.4.0 in which some fsync operations might be skipped in a DB after any DropColumnFamily on that DB, until it is re-opened. This can lead to data loss on power loss. (For custom FileSystem implementations, this could lead to `FSDirectory::Fsync` or `FSDirectory::Close` after the first `FSDirectory::Close`; Also, valgrind could report call to `close()` with `fd=-1`.) diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 27cd33a37..97854305b 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -13,7 +13,7 @@ // minor or major version number planned for release. #define ROCKSDB_MAJOR 7 #define ROCKSDB_MINOR 4 -#define ROCKSDB_PATCH 4 +#define ROCKSDB_PATCH 5 // 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