From dbeb6e61c6804d8acee3ab8b5e109045169b216d Mon Sep 17 00:00:00 2001 From: Nobuyuki Kubota Date: Wed, 2 Jul 2014 18:44:07 +0900 Subject: [PATCH 1/2] version 0.5.9 --- CMakeLists.txt | 2 +- ChangeLog | 14 ++++++++++++++ README.md | 6 +++--- configure.in | 2 +- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c34872804..cc9bd3b5b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ CMAKE_MINIMUM_REQUIRED (VERSION 2.6.4) PROJECT (msgpack) -SET (VERSION 0.5.8) +SET (VERSION 0.5.9) SET (VERSION_MAJOR 0) SET (VERSION_MINOR 5) diff --git a/ChangeLog b/ChangeLog index f495ba921..3e5a59454 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2014-07-02 version 0.5.9: + + * Support std::tr1 unordered containers by default (#51, #63, #68, #69) + * Remove some warnings (#56) + * Fix segmentation fault after malloc failures (#58, #59) + * Fix alloc/dealloc mismatch (#52, #61) + * Fix sample codes (#60, #64) + * Support implicit conversion from integer to float/double (#54) + * Improve documents (#45, #75, #82, #83) + * Support CMake (#20, #87) + * Remove Ruby dependencies in bootstrap (#86, #87) + * Add FILE* buffer (#40) + * Other bug fixes and refactoring: #39, #73, #77, #79, #80, #81, #84, #90 + 2013-12-23 version 0.5.8: * Move to the new github repository msgpack/msgpack-c diff --git a/README.md b/README.md index 6d40cb2e7..8799052a7 100644 --- a/README.md +++ b/README.md @@ -55,9 +55,9 @@ $ make On typical UNIX-like platforms, download source package from [Releases](https://github.com/msgpack/msgpack-c/releases) and run `./configure && make && make install`. Example: ``` -$ wget https://github.com/msgpack/msgpack-c/releases/download/cpp-0.5.8/msgpack-0.5.8.tar.gz -$ tar zxvf msgpack-0.5.8.tar.gz -$ cd msgpack-0.5.8 +$ wget https://github.com/msgpack/msgpack-c/releases/download/cpp-0.5.9/msgpack-0.5.9.tar.gz +$ tar zxvf msgpack-0.5.9.tar.gz +$ cd msgpack-0.5.9 $ ./configure $ make $ sudo make install diff --git a/configure.in b/configure.in index ea9159f6c..b22714a84 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ AC_INIT(src/object.cpp) AC_CONFIG_AUX_DIR(ac) -AM_INIT_AUTOMAKE(msgpack, 0.5.8) +AM_INIT_AUTOMAKE(msgpack, 0.5.9) AC_CONFIG_HEADER(config.h) AC_SUBST(CFLAGS) From 990860fe651d4c5be2a1049f026ad5736058234d Mon Sep 17 00:00:00 2001 From: Nobuyuki Kubota Date: Thu, 3 Jul 2014 11:39:43 +0900 Subject: [PATCH 2/2] Change CMAKE_MINIMUM_REQUIRED to 2.8.6 for SET_PROPERTY APPEND_STRING --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cc9bd3b5b..4ee162ddd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -CMAKE_MINIMUM_REQUIRED (VERSION 2.6.4) +CMAKE_MINIMUM_REQUIRED (VERSION 2.8.6) PROJECT (msgpack) SET (VERSION 0.5.9)