diff --git a/CHANGES.md b/CHANGES.md index 050b24e..186507a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,19 @@ LibCYAML: Change Log ==================== +## LibCYAML v1.1.0 + +* **Loading**: + * Significantly optimised handling of aliases and anchors. + * Fixed handling of duplicate mapping keys. +* **Saving**: + * Increased precision for double precision floating point values. +* **General**: + * Fixed data handling on big endian systems. + +No changes are required for client applications to upgrade. + + ## LibCYAML v1.0.2 * **Loading**: @@ -17,7 +30,7 @@ No changes are required for client applications to upgrade. * **Loading**: * Fixed mapping and sequence values with `CYAML_FLAG_POINTER_NULL`. * **Buildsystem**: - * Installation: Explicity create leading directories. + * Installation: Explicitly create leading directories. No changes are required for client applications to upgrade. diff --git a/Makefile b/Makefile index 5ce6383..b491fe5 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 = 0 -VERSION_PATCH = 2 +VERSION_MINOR = 1 +VERSION_PATCH = 0 VERSION_DEVEL = 1 VERSION_STR = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)