Version and history for 9.6.2

This commit is contained in:
Peter Dillinger 2024-11-01 08:35:24 -07:00
parent ab03f7fb53
commit ccfb1998b1
3 changed files with 5 additions and 2 deletions

View file

@ -1,6 +1,10 @@
# Rocksdb Change Log # Rocksdb Change Log
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt` > 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) ## 9.6.1 (08/24/2024)
### Bug Fixes ### Bug Fixes
* Fix correctness of MultiGet across column families with user timestamp. * Fix correctness of MultiGet across column families with user timestamp.

View file

@ -13,7 +13,7 @@
// minor or major version number planned for release. // minor or major version number planned for release.
#define ROCKSDB_MAJOR 9 #define ROCKSDB_MAJOR 9
#define ROCKSDB_MINOR 6 #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 // 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 // double underscore. Now we have to live with our choice. We'll deprecate these

View file

@ -1 +0,0 @@
* Fix a leak of obsolete blob files left open until DB::Close(). This bug was introduced in version 9.4.0.