summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLevi Tamasi <ltamasi@fb.com>2023-12-08 12:44:09 -0800
committerLevi Tamasi <ltamasi@fb.com>2023-12-08 12:44:09 -0800
commit49ce8a1064dd1ad89117899839bf136365e49e79 (patch)
tree5ae0e0c800869f0ccda3f752424f5f58da96b7d2
parentb8d41c55e79f00bec70670a08a162f374dd9f2d8 (diff)
Update version.h and HISTORY.md for 8.9.1v8.9.1
-rw-r--r--HISTORY.md4
-rw-r--r--include/rocksdb/version.h2
-rw-r--r--unreleased_history/bug_fixes/avoid_destroying_timer.md1
3 files changed, 5 insertions, 2 deletions
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.