From 3f7c92b9753b697ce6a5ea737086d2751f17956c Mon Sep 17 00:00:00 2001 From: Peter Dillinger Date: Wed, 14 Jun 2023 22:32:14 -0700 Subject: [PATCH] Version 8.3.2 and history --- HISTORY.md | 4 ++++ include/rocksdb/version.h | 2 +- unreleased_history/bug_fixes/destroy_posix_env.md | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 unreleased_history/bug_fixes/destroy_posix_env.md diff --git a/HISTORY.md b/HISTORY.md index 018b3a56f..557d0a9ac 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,4 +1,8 @@ # Rocksdb Change Log +## 8.3.2 (06/14/2023) +### Bug Fixes +* Reduced cases of illegally using Env::Default() during static destruction by never destroying the internal PosixEnv itself (except for builds checking for memory leaks). (#11538) + ## 8.3.1 (06/07/2023) ### Performance Improvements * Fixed higher read QPS during DB::Open() reading files created prior to #11406, especially when reading many small file (size < 52 MB) during DB::Open() and partitioned filter or index is used. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index e9708f253..5cfa477f6 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 3 -#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/destroy_posix_env.md b/unreleased_history/bug_fixes/destroy_posix_env.md deleted file mode 100644 index 396640d6b..000000000 --- a/unreleased_history/bug_fixes/destroy_posix_env.md +++ /dev/null @@ -1 +0,0 @@ -Reduced cases of illegally using Env::Default() during static destruction by never destroying the internal PosixEnv itself (except for builds checking for memory leaks). (#11538)