update HISTORY.md and version.h for release

This commit is contained in:
Andrew Kryczka 2024-02-21 13:51:38 -08:00
parent 9402a77a37
commit 1266de2a27
3 changed files with 5 additions and 2 deletions

View 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.11.99 (02/21/2024)
### Behavior Changes
* Merge writes will only keep merge operand count within `ColumnFamilyOptions::max_successive_merges` when the key's merge operands are all found in memory, unless `strict_max_successive_merges` is explicitly set.
## 8.11.2 (02/16/2024)
* Update zlib to 1.3.1 for Java builds

View file

@ -13,7 +13,7 @@
// minor or major version number planned for release.
#define ROCKSDB_MAJOR 8
#define ROCKSDB_MINOR 11
#define ROCKSDB_PATCH 2
#define ROCKSDB_PATCH 99
// 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

View file

@ -1 +0,0 @@
* Merge writes will only keep merge operand count within `ColumnFamilyOptions::max_successive_merges` when the key's merge operands are all found in memory, unless `strict_max_successive_merges` is explicitly set.