]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Update version.h and HISTORY.md for 8.9.1 v8.9.1
authorLevi Tamasi <ltamasi@fb.com>
Fri, 8 Dec 2023 20:44:09 +0000 (12:44 -0800)
committerLevi Tamasi <ltamasi@fb.com>
Fri, 8 Dec 2023 20:44:09 +0000 (12:44 -0800)
HISTORY.md
include/rocksdb/version.h
unreleased_history/bug_fixes/avoid_destroying_timer.md [deleted file]

index 47adf0040a9ce2e86cd3c4b955ee01cba6470bfb..59796f76eb58235094f966db2ce82d5b4a7f98ad 100644 (file)
@@ -1,6 +1,10 @@
 # Rocksdb Change Log
 > NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
 
+## 8.9.1 (12/8/2023)
+### Bug Fixes
+* Avoid destroying the periodic task scheduler's default timer in order to prevent static destruction order issues.
+
 ## 8.9.0 (11/17/2023)
 ### New Features
 * Add GetEntity() and PutEntity() API implementation for Attribute Group support. Through the use of Column Families, AttributeGroup enables users to logically group wide-column entities.
index 1390581554054c2128834c42dc979fc6d7b89b7a..b1ab4f46084401590a54bdade6ebbb1432cec585 100644 (file)
@@ -13,7 +13,7 @@
 // minor or major version number planned for release.
 #define ROCKSDB_MAJOR 8
 #define ROCKSDB_MINOR 9
-#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
diff --git a/unreleased_history/bug_fixes/avoid_destroying_timer.md b/unreleased_history/bug_fixes/avoid_destroying_timer.md
deleted file mode 100644 (file)
index 2a70b6b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Avoid destroying the periodic task scheduler's default timer in order to prevent static destruction order issues.