diff --git a/ChangeLog b/ChangeLog index dc71df4..8da0a94 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,11 @@ +version 1.0.2 + + * fix siphash implementation to avoid unaligned memory access. + * improve Makefile for better platform portability. + * fix test/reactor to use pipes instead of stdin. + version 1.0.1 + * fix an infinite loop when sending 0 byte object via binary protocol. * improve binary protocol compatibility with memcached. Specifically, Delete/Append/Prepend/Increment/Decrement with CAS diff --git a/src/constants.hpp b/src/constants.hpp index c74ca4d..faa9db8 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.1"; +const char VERSION[] = "yrmcds version 1.0.2"; } // namespace yrmcds