mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-04-16 23:12:57 +02:00
Updated the version to 7.0.0.
This commit is contained in:
parent
405977dfa6
commit
b41688c588
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,3 +1,13 @@
|
||||
# 2024-11-02 version 7.0.0
|
||||
* Refine build system (#1133(
|
||||
* Refine CI (#1122)
|
||||
* Refine documents (#1117)
|
||||
## << breaking changes >>
|
||||
* Revert double and fload packing behavior (#1144)
|
||||
* If below decimal point is zero (e.g. 2.00),
|
||||
* Before: pack as int format family `0x02`
|
||||
* After : pack as float format family `0xcb 0x40 0x00 0x00 0x00 0x00 0x00 0x00 0x00`
|
||||
|
||||
# 2024-04-02 version 6.1.1
|
||||
* Fix compilation error when std::variant has the same types (#1112)
|
||||
* Improve CI (#1090, #1110)
|
||||
|
@ -1,7 +1,7 @@
|
||||
`msgpack` for C++
|
||||
===================
|
||||
|
||||
Version 6.1.1 [](https://github.com/msgpack/msgpack-c/actions) [](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/cpp_master)
|
||||
Version 7.0.0 [](https://github.com/msgpack/msgpack-c/actions) [](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/cpp_master)
|
||||
[](https://codecov.io/gh/msgpack/msgpack-c/branch/cpp_master)
|
||||
|
||||
It's like JSON but smaller and faster.
|
||||
|
@ -1,4 +1,4 @@
|
||||
version: 6.1.1.{build}
|
||||
version: 7.0.0.{build}
|
||||
|
||||
branches:
|
||||
only:
|
||||
|
@ -1,3 +1,3 @@
|
||||
#define MSGPACK_VERSION_MAJOR 6
|
||||
#define MSGPACK_VERSION_MINOR 1
|
||||
#define MSGPACK_VERSION_REVISION 1
|
||||
#define MSGPACK_VERSION_MAJOR 7
|
||||
#define MSGPACK_VERSION_MINOR 0
|
||||
#define MSGPACK_VERSION_REVISION 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user