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