From 18e6906810f5e28f90730dc308f3b24b3c923428 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 31 Aug 2024 14:27:21 +0100 Subject: [PATCH 1/2] Docs: Update change log for v1.4.2 release --- CHANGES.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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**: From 094a5fef4565efa0f68b6fb4f74658928e9c1ca9 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 31 Aug 2024 14:28:54 +0100 Subject: [PATCH 2/2] Version: Update to 1.4.2 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)