diff --git a/ChangeLog b/ChangeLog index 8da0a94..82fcdf4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +version 1.0.3 + + * fix a compilation problem on non-SSE Intel 32bit CPU. + * remove test/async as it is not related to any part of yrmcds. + version 1.0.2 * fix siphash implementation to avoid unaligned memory access. diff --git a/src/constants.hpp b/src/constants.hpp index faa9db8..93dea6c 100644 --- a/src/constants.hpp +++ b/src/constants.hpp @@ -29,7 +29,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.0.2"; +const char VERSION[] = "yrmcds version 1.0.3"; } // namespace yrmcds