Skip to content

Commit 6e7deb8

Browse files
authored
Merge pull request #875 from redboltz/update_to_330
Update the version to 3.3.0.
2 parents 243fb27 + 66fa561 commit 6e7deb8

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 2020-06-05 version 3.3.0
2+
* Add json example for C (#870)
3+
* Add both header and body packing functions for C (#870)
4+
* Set default ref_size and chunk_size to vrefbuffer (#865)
5+
* Add examples (#861)
6+
* Improve build system (#839, #842)
7+
* Improve tests (#829)
8+
* Improve documents (#828)
9+
* Remove some warnings (#827, #851, #871)
10+
* Improve CI environment (#824, #831, #833, #834, #846, #860, 874)
11+
112
# 2019-12-10 version 3.2.1
213
* Fix snprintf return value checking (#821)
314
* Remove some warnings (#819)

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.2.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.3.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
[![codecov](https://codecov.io/gh/msgpack/msgpack-c/branch/master/graph/badge.svg)](https://codecov.io/gh/msgpack/msgpack-c)
66

77
It's like JSON but smaller and faster.

appveyor.yml

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

33
branches:
44
only:

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

0 commit comments

Comments
 (0)