Skip to content

Commit 79d3fcd

Browse files
committed
Bump version to v1.1.1, update changelog
1 parent e55dcd5 commit 79d3fcd

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
MPack v1.1.1
2+
------------
3+
4+
Bug Fixes:
5+
6+
- Fixed a crash that could occur when a builder element was aligned exactly at the end of a page. (See #94)
7+
8+
- Fixed a crash when encountering an I/O error during builder resolution without an error handler callback. (See #98)
9+
10+
- Fixed an error destroying a writer while a builder is open. (See #88)
11+
12+
- Fixed an issue with incorrect NULL checks for 0-length buffers. (See #97)
13+
14+
- Fixed a string formatting issue on platforms where `int` is not 32 bits. (See #103)
15+
16+
- Fixed some documentation errors. (See #93, #102)
17+
18+
- Cleaned up some references to old unit test buildsystem. (See #95)
19+
120
MPack v1.1
221
----------
322

src/mpack/mpack-common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ MPACK_EXTERN_C_BEGIN
5252

5353
#define MPACK_VERSION_MAJOR 1 /**< The major version number of MPack. */
5454
#define MPACK_VERSION_MINOR 1 /**< The minor version number of MPack. */
55-
#define MPACK_VERSION_PATCH 0 /**< The patch version number of MPack. */
55+
#define MPACK_VERSION_PATCH 1 /**< The patch version number of MPack. */
5656

5757
/** A number containing the version number of MPack for comparison purposes. */
5858
#define MPACK_VERSION ((MPACK_VERSION_MAJOR * 10000) + \

0 commit comments

Comments
 (0)