From f38f5570d54a9a5a42a7efb6322ac137242d9b04 Mon Sep 17 00:00:00 2001 From: akankshamahajan Date: Tue, 26 Apr 2022 15:28:06 -0700 Subject: [PATCH] Update version.h and HISTORY.md for 7.2.1 --- HISTORY.md | 3 +-- include/rocksdb/version.h | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index a988e32f9..c7948371e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,5 @@ # Rocksdb Change Log -## Unreleased - +## 7.2.1 (04/26/2022) ### Bug Fixes * Fixed a bug where RocksDB could corrupt DBs with `avoid_flush_during_recovery == true` by removing valid WALs, leading to `Status::Corruption` with message like "SST file is ahead of WALs" when attempting to reopen. * RocksDB calls FileSystem::Poll API during FilePrefetchBuffer destruction which impacts performance as it waits for read requets completion which is not needed anymore. Calling FileSystem::AbortIO to abort those requests instead fixes that performance issue. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index a6954fb10..58d03cc1b 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 7 #define ROCKSDB_MINOR 2 -#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