summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kryczka <andrewkr@fb.com>2022-11-27 23:13:46 -0800
committerAndrew Kryczka <andrewkr@fb.com>2022-11-27 23:13:46 -0800
commit832966016d49c2f651ed3965cbb75409ab2e431c (patch)
tree32f9a0cc89af50f7257ede83946d3c182c11a651
parent33767c4840019d666206a083396f69a6a7acbced (diff)
update HISTORY.md and version.h for 7.7.8v7.7.8
-rw-r--r--HISTORY.md2
-rw-r--r--include/rocksdb/version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 5490cfb04..757d57a7f 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,5 +1,5 @@
# Rocksdb Change Log
-## Unreleased
+## 7.7.8 (11/27/2022)
### Bug Fixes
* Fix failed memtable flush retry bug that could cause wrongly ordered updates, which would surface to writers as `Status::Corruption` in case of `force_consistency_checks=true` (default). It affects use cases that enable both parallel flush (`max_background_flushes > 1` or `max_background_jobs >= 8`) and non-default memtable count (`max_write_buffer_number > 2`).
* Tiered Storage: fixed excessive keys written to penultimate level in non-debug builds.
diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h
index 86f402800..3a5428e3a 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 7
-#define ROCKSDB_PATCH 7
+#define ROCKSDB_PATCH 8
// 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