File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
20
MPack v1.1
2
21
----------
3
22
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ MPACK_EXTERN_C_BEGIN
52
52
53
53
#define MPACK_VERSION_MAJOR 1 /**< The major version number of MPack. */
54
54
#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. */
56
56
57
57
/** A number containing the version number of MPack for comparison purposes. */
58
58
#define MPACK_VERSION ((MPACK_VERSION_MAJOR * 10000) + \
You can’t perform that action at this time.
0 commit comments