From a5a3d02d5c8eac66e0c4f951d85632257e5c8cbd Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 21 Nov 2021 13:28:45 +0000 Subject: [PATCH 1/2] Docs: Update change log for version 1.3.0 release. --- CHANGES.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 67f86c8..770b70d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,9 +1,20 @@ LibCYAML: Change Log ==================== -## LibCYAML v1.2.1 +## LibCYAML v1.3.0 +* **Saving**: + * New flags allow control over scalar output style. + - For example to force single or double quote style. * **General** + * Buildsystem changes to allow use of CPPFLAGS from the environment. + +No changes are required for client applications to upgrade. + + +## LibCYAML v1.2.1 + +* **General**: * Support for dynamic library build on Mac OS X. * Ordered designated initialisers in public header for C++ compatibility. From cb90acc333633d3f2bf4cf95f7b95386063a9f57 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 21 Nov 2021 13:30:23 +0000 Subject: [PATCH 2/2] Buildsystem: Bump version for v1.3.0 release. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9e1b8d7..b1c9d30 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,8 @@ # Master branch will always be DEVEL. The release process will be to make # the release branch, set VESION_DEVEL to 0, and tag the release. VERSION_MAJOR = 1 -VERSION_MINOR = 2 -VERSION_PATCH = 1 +VERSION_MINOR = 3 +VERSION_PATCH = 0 VERSION_DEVEL = 1 VERSION_STR = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)