diff --git a/ChangeLog b/ChangeLog index 40def7d..e267577 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +version 1.1.12 + + * Fix busy loop when FDs are exhausted (#91). + * Early close resource file descriptors (#95). + version 1.1.11 * New config option "initial_repl_sleep_delay_usec" (#88). diff --git a/README.md b/README.md index a166953..b533e26 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Prerequisites ------------- * **Linux**. -* C++11 compiler (gcc 4.8.1+ or clang 3.3+). +* GCC or clang with C++17 support. * GNU make. Build diff --git a/src/constants.hpp b/src/constants.hpp index e157cc4..9253d74 100644 --- a/src/constants.hpp +++ b/src/constants.hpp @@ -34,7 +34,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.11"; +const char VERSION[] = "yrmcds version 1.1.12"; } // namespace yrmcds