Skip to content

Commit 72757fe

Browse files
committed
Updated the version to 3.1.0
1 parent 45defd5 commit 72757fe

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# 2018-08-10 version 3.1.0
2+
3+
* Improve documents (#687, #718)
4+
* Add fuzzer support (#689)
5+
* Fix msgpack::object union member access bug (#694)
6+
* Improve cross platform configuration (#704)
7+
* Fix out of range dereference bug of EXT (#705)
8+
* Add timestamp support. std::chrono::system_clock::time_point is mapped to TIMESTAMP (#706)
9+
* Add minimal timestamp support for C. The type `msgpack_timestamp` and the function `msgpack_object_to_timestamp()` are introduced (#707)
10+
* Improve MSGPACK_DEFINE family name confliction probability (#710)
11+
* Add no static-library build option (BUILD_SHARED_LIBS=ON) (#713, #717, #722)
12+
* Add header only cmake target (#721)
13+
* Add `std::byte` adaptor (#719)
14+
* Remove some warnings (#720)
15+
116
# 2018-05-12 version 3.0.1
217

318
* Add fuzz directory to release tar ball (#686)

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 3.0.1 [![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 3.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 smaller and faster.
77

appveyor.yml

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

33
image:
44
- Visual Studio 2015

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 3
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)