Skip to content

Commit

Permalink
Bump version to v1.1.1, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ludocode committed Jan 9, 2023
1 parent e55dcd5 commit 79d3fcd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
MPack v1.1.1
------------

Bug Fixes:

- Fixed a crash that could occur when a builder element was aligned exactly at the end of a page. (See #94)

- Fixed a crash when encountering an I/O error during builder resolution without an error handler callback. (See #98)

- Fixed an error destroying a writer while a builder is open. (See #88)

- Fixed an issue with incorrect NULL checks for 0-length buffers. (See #97)

- Fixed a string formatting issue on platforms where `int` is not 32 bits. (See #103)

- Fixed some documentation errors. (See #93, #102)

- Cleaned up some references to old unit test buildsystem. (See #95)

MPack v1.1
----------

Expand Down
2 changes: 1 addition & 1 deletion src/mpack/mpack-common.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ MPACK_EXTERN_C_BEGIN

#define MPACK_VERSION_MAJOR 1 /**< The major version number of MPack. */
#define MPACK_VERSION_MINOR 1 /**< The minor version number of MPack. */
#define MPACK_VERSION_PATCH 0 /**< The patch version number of MPack. */
#define MPACK_VERSION_PATCH 1 /**< The patch version number of MPack. */

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

0 comments on commit 79d3fcd

Please sign in to comment.