summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kryczka <andrew.kryczka2@gmail.com>2023-09-01 13:58:39 -0700
committerAndrew Kryczka <andrew.kryczka2@gmail.com>2023-09-01 13:58:39 -0700
commitf32521662acf3352397d438b732144c7813bbbec (patch)
tree71181a0ddcd05295a92ad33fd91e53f6e4c3a106
parentfad0f3d34e823f10190367ee53a76b0c1cca75ef (diff)
update HISTORY.md and version.h for 8.5.3v8.5.3
-rw-r--r--HISTORY.md4
-rw-r--r--include/rocksdb/version.h2
-rw-r--r--unreleased_history/bug_fixes/fixed_generic_rate_limiter_hang.md1
3 files changed, 5 insertions, 2 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 68c4a8314..36a925ff5 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,6 +1,10 @@
# Rocksdb Change Log
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
+## 8.5.3 (09/01/2023)
+### Bug Fixes
+* Fixed a race condition in `GenericRateLimiter` that could cause it to stop granting requests
+
## 8.5.2 (08/31/2023)
### Bug fixes
* Fix a bug where iterator may return incorrect result for DeleteRange() users if there was an error reading from a file.
diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h
index 601ef0e6b..a19f41fd2 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 8
#define ROCKSDB_MINOR 5
-#define ROCKSDB_PATCH 2
+#define ROCKSDB_PATCH 3
// 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/fixed_generic_rate_limiter_hang.md b/unreleased_history/bug_fixes/fixed_generic_rate_limiter_hang.md
deleted file mode 100644
index 8f789e186..000000000
--- a/unreleased_history/bug_fixes/fixed_generic_rate_limiter_hang.md
+++ /dev/null
@@ -1 +0,0 @@
-Fixed a race condition in `GenericRateLimiter` that could cause it to stop granting requests