Skip to content

Commit 5be2757

Browse files
committed
Updated the version to 2.1.0.
1 parent c6c31dc commit 5be2757

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# 2017-01-10 version 2.1.0
2+
3+
## << breaking changes >>
4+
5+
* Fix object internal data type is float if msgpack format is float32 (#531)
6+
7+
## << recommended changes >>
8+
9+
* Add `FLOAT64` type. Please use it instead of `DOUBLE` (#531)
10+
* Add `FLOAT32` type. Please use it instead of `FLOAT` (#531)
11+
12+
## << other updates >>
13+
14+
* Add iterator based parse/unpack function(experimental) (#553)
15+
* Add `[[deprecated]]` attribute for C++14 (#552)
16+
* Fix `msgpack_unpack()` return code (#548)
17+
* Fix integer overflow (#547, #549, #550)
18+
* Add example codes (#542)
19+
* Add MSGPACK_NVP. You can use not only variable name but also any strings (#535)
20+
* Fix and Improve build system (#532, #545)
21+
* Fix `gcc_atomic.hpp` include path (#529, #530)
22+
* Improve CI environment (#526)
23+
* Improve documents (#524)
24+
* Add msgpack_unpacker_next_with_size() function (#515)
25+
* Fix `as()` applying condition (#511)
26+
* Fix fbuffer write (#504)
27+
* Add gcc bug workaround (#499)
28+
* Improve object print (#497, #500, #505, #533)
29+
* Remove some warnings (#495, #506, #508, #513, #528, #538, #545)
30+
131
# 2016-06-25 version 2.0.0
232

333
## << breaking changes >>

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 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)
4+
Version 2.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)
55

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

appveyor.yml

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

33
environment:
44
matrix:

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 2
2-
#define MSGPACK_VERSION_MINOR 0
2+
#define MSGPACK_VERSION_MINOR 1
33
#define MSGPACK_VERSION_REVISION 0

0 commit comments

Comments
 (0)