From: Levi Tamasi Date: Fri, 8 Dec 2023 20:44:09 +0000 (-0800) Subject: Update version.h and HISTORY.md for 8.9.1 X-Git-Tag: v8.9.1^0 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=49ce8a1064dd1ad89117899839bf136365e49e79;p=rocksdb.git Update version.h and HISTORY.md for 8.9.1 --- diff --git a/HISTORY.md b/HISTORY.md index 47adf0040..59796f76e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 139058155..b1ab4f460 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 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 index 2a70b6b31..000000000 --- a/unreleased_history/bug_fixes/avoid_destroying_timer.md +++ /dev/null @@ -1 +0,0 @@ -Avoid destroying the periodic task scheduler's default timer in order to prevent static destruction order issues.