summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dillinger <peterd@fb.com>2022-08-02 12:56:55 -0700
committerPeter Dillinger <peterd@fb.com>2022-08-02 12:56:55 -0700
commite072c129d57a0883370034cecf6774c745c40f76 (patch)
tree69a3f93a5e21d2b773a2294fe2b7fb05e9ba054d
parented057748689c80517e60da125d41fd8fde2676dc (diff)
Update HISTORY and version.h for 7.4.5v7.4.5
-rw-r--r--HISTORY.md2
-rw-r--r--include/rocksdb/version.h2
2 files changed, 2 insertions, 2 deletions
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