summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY.md5
-rw-r--r--include/rocksdb/version.h2
-rw-r--r--unreleased_history/public_api_changes/corruption_retry_stats.md1
3 files changed, 5 insertions, 3 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 224969205..25f1af047 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,10 +1,13 @@
# Rocksdb Change Log
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
-## Unreleased
+## 9.5.2 (08/13/2024)
### Bug Fixes
* Fix a race condition in pessimistic transactions that could allow multiple transactions with the same name to be registered simultaneously, resulting in a crash or other unpredictable behavior.
+### Public API Changes
+* Add ticker stats to count file read retries due to checksum mismatch
+
## 9.5.1 (08/02/2024)
### Bug Fixes
* *Make DestroyDB supports slow deletion when it's configured in `SstFileManager`. The slow deletion is subject to the configured `rate_bytes_per_sec`, but not subject to the `max_trash_db_ratio`.
diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h
index e56d5e460..031b8207e 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 9
#define ROCKSDB_MINOR 5
-#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/public_api_changes/corruption_retry_stats.md b/unreleased_history/public_api_changes/corruption_retry_stats.md
deleted file mode 100644
index 8edf5f2e2..000000000
--- a/unreleased_history/public_api_changes/corruption_retry_stats.md
+++ /dev/null
@@ -1 +0,0 @@
-Add ticker stats to count file read retries due to checksum mismatch