diff --git a/CHANGES.md b/CHANGES.md index e700a0d..26dc4cd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,20 @@ LibCYAML: Change Log ==================== +## LibCYAML v1.4.2 + +* **Buildsystem** + * Add explicit shared and static library install targets. +* **General** + * Small code cleanups. + * Reverted to C89-compatible static assertion macro. + Fixes build on quirky platforms. + * Rationalised GitHub actions. + * Fixed CI for MacOS. + +No changes are required for client applications to upgrade. + + ## LibCYAML v1.4.1 * **Loading**: diff --git a/Makefile b/Makefile index e838cd1..2dce218 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # 6. Set VESION_DEVEL to 1, commit to main. VERSION_MAJOR = 1 VERSION_MINOR = 4 -VERSION_PATCH = 1 +VERSION_PATCH = 2 VERSION_DEVEL = 1 VERSION_STR = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)