Skip to content

Commit a277ea7

Browse files
committed
Updated version to 1.1.0. Updated CHANGELOG.md.
1 parent 285ccfe commit a277ea7

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
2015-3-22 version 1.0.1:
1+
2015-04-03 version 1.1.0
2+
<< breaking change >>
3+
* Remove msgpack_fwd.hpp
4+
* Improve user types adaptation mechanism (#262)
5+
Since version 1.0.0, users need to obey the correct include order.
6+
However, it is very difficult to maintain the correct order in big
7+
projects. version 1.1.0 removed this order. Users don't need to
8+
care about include order. Migration guide from 1.0.x to 1.1.0 has
9+
been written. See https://github.com/msgpack/msgpack-c/wiki
10+
11+
* Fix vector<bool> size check (#251)
12+
* Fix inttypes.h inclusion on MSVC (#257)
13+
* Support documents generation by Doxygen (#259)
14+
* Remove C99 style variable declaration (#253)
15+
* Improve documents (https://github.com/msgpack/msgpack-c/wiki)
16+
2015-03-22 version 1.0.1:
217
* Fix compilation error on Mac 10.9 (#244)
318
* Fix typos in documents (#240)
419
* Update CHANGELOG.md for version 1.0.0 (#242)

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.0.1 [![Build Status](https://travis-ci.org/msgpack/msgpack-c.svg?branch=master)](https://travis-ci.org/msgpack/msgpack-c)
4+
Version 1.1.0 [![Build Status](https://travis-ci.org/msgpack/msgpack-c.svg?branch=master)](https://travis-ci.org/msgpack/msgpack-c)
55

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

include/msgpack/version_master.h

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

0 commit comments

Comments
 (0)