From 49ce8a1064dd1ad89117899839bf136365e49e79 Mon Sep 17 00:00:00 2001 From: Levi Tamasi Date: Fri, 8 Dec 2023 12:44:09 -0800 Subject: [PATCH] Update version.h and HISTORY.md for 8.9.1 --- HISTORY.md | 4 ++++ include/rocksdb/version.h | 2 +- unreleased_history/bug_fixes/avoid_destroying_timer.md | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 unreleased_history/bug_fixes/avoid_destroying_timer.md diff --git a/HISTORY.md b/HISTORY.md index 47adf0040a9..59796f76eb5 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 13905815540..b1ab4f46084 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 2a70b6b31a4..00000000000 --- 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.