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. 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)