]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Update HISTORY.md and version for 8.10.1
authorakankshamahajan <akankshamahajan@fb.com>
Tue, 16 Jan 2024 23:54:18 +0000 (15:54 -0800)
committerakankshamahajan <akankshamahajan@fb.com>
Tue, 16 Jan 2024 23:54:18 +0000 (15:54 -0800)
Summary:

Test Plan:

Reviewers:

Subscribers:

Tasks:

Tags:

HISTORY.md
include/rocksdb/version.h
unreleased_history/bug_fixes/auto_readahead_size.md [deleted file]

index 0d7c284b2f059695245dabfab36ad5bec8e7df1e..b5804367462ecf02050f7d69fc71e6d86cd1f990 100644 (file)
@@ -1,6 +1,10 @@
 # Rocksdb Change Log
 > NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
 
+## 8.10.1 (01/16/2024)
+### Bug Fixes
+* Fix bug in auto_readahead_size that combined with IndexType::kBinarySearchWithFirstKey + fails or iterator lands at a wrong key
+
 ## 8.10.0 (12/15/2023)
 ### New Features
 * Provide support for async_io to trim readahead_size by doing block cache lookup
index 530d4fee76d762c944d716d7491bb5a1447ebf7d..4a3e3141134ee0e9b3c2403c6454abd1f833f6f7 100644 (file)
@@ -13,7 +13,7 @@
 // minor or major version number planned for release.
 #define ROCKSDB_MAJOR 8
 #define ROCKSDB_MINOR 10
-#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/auto_readahead_size.md b/unreleased_history/bug_fixes/auto_readahead_size.md
deleted file mode 100644 (file)
index 7591dc5..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Fix bug in auto_readahead_size that combined with IndexType::kBinarySearchWithFirstKey + fails or iterator lands at a wrong key