Skip to content

Commit 197ed8c

Browse files
committed
Merge pull request #92 from nobu-k/version0.5.9
version 0.5.9
2 parents 2b3f37f + 990860f commit 197ed8c

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
CMAKE_MINIMUM_REQUIRED (VERSION 2.6.4)
1+
CMAKE_MINIMUM_REQUIRED (VERSION 2.8.6)
22
PROJECT (msgpack)
33

4-
SET (VERSION 0.5.8)
4+
SET (VERSION 0.5.9)
55
SET (VERSION_MAJOR 0)
66
SET (VERSION_MINOR 5)
77

ChangeLog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
2014-07-02 version 0.5.9:
2+
3+
* Support std::tr1 unordered containers by default (#51, #63, #68, #69)
4+
* Remove some warnings (#56)
5+
* Fix segmentation fault after malloc failures (#58, #59)
6+
* Fix alloc/dealloc mismatch (#52, #61)
7+
* Fix sample codes (#60, #64)
8+
* Support implicit conversion from integer to float/double (#54)
9+
* Improve documents (#45, #75, #82, #83)
10+
* Support CMake (#20, #87)
11+
* Remove Ruby dependencies in bootstrap (#86, #87)
12+
* Add FILE* buffer (#40)
13+
* Other bug fixes and refactoring: #39, #73, #77, #79, #80, #81, #84, #90
14+
115
2013-12-23 version 0.5.8:
216

317
* Move to the new github repository msgpack/msgpack-c

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ $ make
5555
On typical UNIX-like platforms, download source package from [Releases](https://github.com/msgpack/msgpack-c/releases) and run `./configure && make && make install`. Example:
5656

5757
```
58-
$ wget https://github.com/msgpack/msgpack-c/releases/download/cpp-0.5.8/msgpack-0.5.8.tar.gz
59-
$ tar zxvf msgpack-0.5.8.tar.gz
60-
$ cd msgpack-0.5.8
58+
$ wget https://github.com/msgpack/msgpack-c/releases/download/cpp-0.5.9/msgpack-0.5.9.tar.gz
59+
$ tar zxvf msgpack-0.5.9.tar.gz
60+
$ cd msgpack-0.5.9
6161
$ ./configure
6262
$ make
6363
$ sudo make install

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AC_INIT(src/object.cpp)
22
AC_CONFIG_AUX_DIR(ac)
3-
AM_INIT_AUTOMAKE(msgpack, 0.5.8)
3+
AM_INIT_AUTOMAKE(msgpack, 0.5.9)
44
AC_CONFIG_HEADER(config.h)
55

66
AC_SUBST(CFLAGS)

0 commit comments

Comments
 (0)