Skip to content

Commit cd84d04

Browse files
committed
Appended CHANGELOG. Updated version.
1 parent 0d1e178 commit cd84d04

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
# 2016-06-25 version 2.0.0
2+
3+
## << breaking changes >>
4+
5+
* Removed autotools support. Use cmake instead (#476, #479)
6+
* Removed pointer version of msgpack::unpack APIs. Use reference version instead (#453)
7+
* Removed MSGPACK_DISABLE_LEGACY_CONVERT. msgpack::object::convert(T*) is removed by default. Use msgpack::object::convert(T&) instead (#451)
8+
* Removed msgpacl::type::nil. Use nil_t or define MSGPACK_USE_LECACY_NIL (#444)
9+
* Removed std::string to msgpack::object conversion (#434)
10+
11+
## << recommended changes >>
12+
13+
* Replaced msgpack::unpacked with msgpack::object_handle. msgpack::unpacked is kept as a typedef of msgpack::object_handle. (#448)
14+
15+
## << other updates >>
16+
17+
* Add strict size checking adaptor. Relaxed tuple conversion (#489)
18+
* Fix and Improve example codes (#487)
19+
* Add C++/CLI support for nullptr (#481)
20+
* Update the boost libraries that are contained by msgpack-c (#475)
21+
* Fix gcc_atomic.hpp location (#474)
22+
* Add C-Style array support (#466, #488)
23+
* Fix include file dependency (#464)
24+
* Add a visitor version of unpack API (#461)
25+
* Fix JSON string conversion from "nil" to "null" (#458)
26+
* Fix and Improve build system (#455, #471, #473, #486, #491)
27+
* Fix comments (#452)
28+
* Fix unintentional msgpack::zone moving problem (#447)
29+
* Fix operator>> and << for msgpack::object (#443)
30+
* Fix C++03 msgpack::zone::clear() memory access violation bug (#441)
31+
* Fix TARGET_OS_IPHONE checking (#436)
32+
* Fix invalid front() call for empty container (#435)
33+
* Fix compile error on g++6 (C++11 only) (#426, #430)
34+
* Fix zone size expansion logic (#423)
35+
* Fix wrong hader file dependency (#421)
36+
* Fix msvc specific problem (#420)
37+
* Add v2 API support (#415)
38+
139
# 2016-01-22 version 1.4.0
240

341
## << recommended changes >>

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
Version 2.0.0 (under development)[![Build Status](https://travis-ci.org/msgpack/msgpack-c.svg?branch=master)](https://travis-ci.org/msgpack/msgpack-c) [![Build status](https://ci.appveyor.com/api/projects/status/8kstcgt79qj123mw/branch/master?svg=true)](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/master)
55

6-
The newest release is version [1.4.1](https://github.com/msgpack/msgpack-c/releases/tag/cpp-1.4.1)
7-
86
It's like JSON but small and fast.
97

108
Overview

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.1.0.{build}
1+
version: 2.0.0.{build}
22

33
environment:
44
matrix:

makedist.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ tar --append --file=$filename $prefix/erb
2121
tar --append --file=$filename $prefix/src
2222

2323
tar --append --file=$filename $prefix/CMakeLists.txt
24+
tar --append --file=$filename $prefix/Files.cmake
2425
tar --append --file=$filename $prefix/NOTICE
2526
tar --append --file=$filename $prefix/Doxyfile
2627
tar --append --file=$filename $prefix/msgpack.pc.in
@@ -31,6 +32,8 @@ tar --append --file=$filename $prefix/ChangeLog
3132
tar --append --file=$filename $prefix/NEWS
3233
tar --append --file=$filename $prefix/COPYING
3334
tar --append --file=$filename $prefix/README
35+
tar --append --file=$filename $prefix/msgpack_vc8.sln
36+
tar --append --file=$filename $prefix/msgpack_vc8.vcproj
3437

3538
rm -f $prefix
3639

0 commit comments

Comments
 (0)