Skip to content

Commit 63971da

Browse files
committed
Merge pull request #364 from redboltz/1_2_0_rel
Updated version. Appended CHANGELOG.
2 parents e5948a3 + 8a17e7f commit 63971da

File tree

3 files changed

+45
-3
lines changed

3 files changed

+45
-3
lines changed

CHANGELOG.md

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
2015-09-04 version 1.2.0
2+
<< breaking change >>
3+
* Change std::vector<unsigned char> and std::array<unsigned char>
4+
mapped to BIN instead of ARRAY (#243)
5+
* Remove redundant copy (#285)
6+
7+
* Add array_ref to map to ARRAY (#243)
8+
* Add variant type and adaptor (#349)
9+
* Add object::convert_if_not_nil() (#357)
10+
* Fix invalid offset update (#354)
11+
* Add C++11 support on MSVC2015(#339, #347)
12+
* Fix and Improve build system (#346, #350, #361, #363)
13+
* Import Boost.Preprocessor as a part of msgpack-c (#312)
14+
* Fix OSX with libc++ specific errors (#334, #362)
15+
* Add customized containers support (#330)
16+
* Add std::unique_ptr and std::shared_ptr support (#329)
17+
* Add missing install files (#328)
18+
* Add shared/static library switching option (#316)
19+
* Improve no throw description on C++11 (#313)
20+
* Import Boost.Predef as a part of msgpack-c (#312)
21+
* Add map based serialize support (#306)
22+
* Add Boost.Fusion support (#305)
23+
* Add v4 format RAW support (#304)
24+
* Fix zbuffer with empty string problem (#303)
25+
* Add non default constructible class support (#302, #324, #327, #331, #332, #345)
26+
* Add inline keyword to function (template) (#299)
27+
* Add EXT type supporting classes (#292, #308)
28+
* Fix raw_ref != comparison (#290)
29+
* Add object deep copy (#288)
30+
* Remove some warnings (#284, #322, #323, #335)
31+
* Improve compiler version checking (#283)
32+
* Add return value to object::convert() (#282)
33+
* Improve move semantic support in C++11 (#279, #353)
34+
* Add Boost.StringRef support (#278)
35+
* Improve CI environment (#276, #294, #338)
36+
* Add converting to JSON (#274, #301)
37+
* Fix iOS specific problem (#270)
38+
* Improve doxtgen document generation (#269)
39+
* Add Boost.Optional support (#268)
40+
* Fix msvc specific problem (#267, #295)
41+
* Add base class serialization. (#265, #277)
42+
* Add and improve examples. (#264, #310, #311, #341, #342, #344)
43+
* Fix wiki URL. (#263)
144
2015-04-03 version 1.1.0
245
<< breaking change >>
346
* Remove msgpack_fwd.hpp
@@ -116,4 +159,3 @@
116159
* Add operator==(object, const T&)
117160
* MSGPACK_DEFINE macro defines msgpack_object(object* obj, zone* z)
118161
* C++ programs doesn't need to link "msgpackc" library.
119-

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
`msgpack` for C/C++
22
===================
33

4-
Version 1.1.0 [![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)
4+
Version 1.2.0 [![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

66
It's like JSON but small and fast.
77

include/msgpack/version_master.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#define MSGPACK_VERSION_MAJOR 1
2-
#define MSGPACK_VERSION_MINOR 1
2+
#define MSGPACK_VERSION_MINOR 2
33
#define MSGPACK_VERSION_REVISION 0

0 commit comments

Comments
 (0)