Skip to content

Commit b065560

Browse files
authored
Merge pull request #966 from msgpack/update_to_cpp_4
Updated to version 4.0.0.
2 parents c1b3d75 + 93b4149 commit b065560

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# 2021-08-29 version 4.0.0 for C++
2+
* Improve zone alignment logic (#965)
3+
* Fix v1 unpack logic for STR and BIN (#957, #951)
4+
* Fix UB on memcmp with size 0 (#954)
5+
* Fix `iovec` name conflict (#952)
6+
* Add `std::array<std::byte>` `std::span<char>` `std::span<unsigned char>` `std::span<std::byte>` adaptors (#951)
7+
* Improve documents (#918, #919, #951)
8+
* Improve tests (#916)
9+
* Introduce BOOST_ASSERT (#898)
10+
* Improve build system (#897, #905, #924, #951)
11+
* Improve Boost.Fusion support (#894)
12+
* Check nullptr before call memcpy (#891)
13+
* Refine and bugfix `std::chrono::time_point` adaptor (#888, #893)
14+
* Improve CI (#884, #892, #895, #951, #955)
15+
## << breaking changes >>
16+
* Separate C++ part of the msgpack-c from C/C++ mixed msgpack-c (#876, #878)
17+
* Require boost libraries. See README.md Dependency(#912)
18+
119
# 2020-06-05 version 3.3.0
220
* Add json example for C (#870)
321
* Add both header and body packing functions for C (#870)

README.md

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

4-
Version 3.3.0 [![Build Status](https://github.com/msgpack/msgpack-c/workflows/CI/badge.svg?branch=cpp_master)](https://github.com/msgpack/msgpack-c/actions) [![Build status](https://ci.appveyor.com/api/projects/status/8kstcgt79qj123mw/branch/cpp_master?svg=true)](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/cpp_master)
4+
Version 4.0.0 [![Build Status](https://github.com/msgpack/msgpack-c/workflows/CI/badge.svg?branch=cpp_master)](https://github.com/msgpack/msgpack-c/actions) [![Build status](https://ci.appveyor.com/api/projects/status/8kstcgt79qj123mw/branch/cpp_master?svg=true)](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/cpp_master)
55
[![codecov](https://codecov.io/gh/msgpack/msgpack-c/branch/cpp_master/graph/badge.svg)](https://codecov.io/gh/msgpack/msgpack-c/branch/cpp_master)
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.3.0.{build}
1+
version: 4.0.0.{build}
22

33
branches:
44
only:

include/msgpack/version_master.hpp

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

0 commit comments

Comments
 (0)