From: Peter Dillinger Date: Fri, 1 Nov 2024 15:35:24 +0000 (-0700) Subject: Version and history for 9.6.2 X-Git-Tag: v9.6.2^0 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ccfb1998b1ea2aa6e9e9e2a785574a19a7ed5714;p=rocksdb.git Version and history for 9.6.2 --- diff --git a/HISTORY.md b/HISTORY.md index aed182fac..f887fc222 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` +## 9.6.2 (10/31/2024) +### Bug Fixes +* Fix a leak of obsolete blob files left open until DB::Close(). This bug was introduced in version 9.4.0. + ## 9.6.1 (08/24/2024) ### Bug Fixes * Fix correctness of MultiGet across column families with user timestamp. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 6e0c73702..286629dd3 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 9 #define ROCKSDB_MINOR 6 -#define ROCKSDB_PATCH 1 +#define ROCKSDB_PATCH 2 // 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/blob_file_leak.md b/unreleased_history/bug_fixes/blob_file_leak.md deleted file mode 100644 index 57f54df76..000000000 --- a/unreleased_history/bug_fixes/blob_file_leak.md +++ /dev/null @@ -1 +0,0 @@ -* Fix a leak of obsolete blob files left open until DB::Close(). This bug was introduced in version 9.4.0.