From 8b887adbb4a51f559f472972d7254894dac26814 Mon Sep 17 00:00:00 2001 From: ymmt Date: Tue, 25 Jul 2023 23:50:20 +0000 Subject: [PATCH] Bump version to 1.1.10 --- ChangeLog | 7 +++++++ src/constants.hpp | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a88b879..f0dbc99 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +version 1.1.10 + + * Increased the listen backlog from 128 to 4096 (#77). + * The max `repl_buffer_size` is increased from 100 to 65536 (#81). + * Fix slave death during huge initial replication (#83). + * Fix builds on GCC 13 (#85). Thanks to @yuzibo. + version 1.1.9 * Support GCC7 (#70). diff --git a/src/constants.hpp b/src/constants.hpp index edda23e..289e248 100644 --- a/src/constants.hpp +++ b/src/constants.hpp @@ -33,7 +33,7 @@ const std::size_t MAX_REQUEST_LENGTH = 30 << 20; // 30 MiB const int MAX_SLAVES = 5; const int MAX_CONSECUTIVE_GCS = 3; -const char VERSION[] = "yrmcds version 1.1.9"; +const char VERSION[] = "yrmcds version 1.1.10"; } // namespace yrmcds