v0.1.2
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fc526c..2c2a9bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.1.2] - 2019-04-15 ### Added - `AVIF_NCLX_COLOUR_PRIMARIES_P3` (convenient mirrored value) - `avifNclxColourPrimariesFind()` - Finds a builtin avifNclxColourPrimaries and name by a set of primaries @@ -33,5 +35,6 @@ - `avifVersion()` function [Unreleased]: https://github.com/joedrago/avif/compare/v0.1.1...HEAD +[0.1.2]: https://github.com/joedrago/avif/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/joedrago/avif/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/joedrago/avif/releases/tag/v0.1.0
diff --git a/include/avif/avif.h b/include/avif/avif.h index af4d7f2..283fa9b 100644 --- a/include/avif/avif.h +++ b/include/avif/avif.h
@@ -16,7 +16,7 @@ #define AVIF_VERSION_MAJOR 0 #define AVIF_VERSION_MINOR 1 -#define AVIF_VERSION_PATCH 1 +#define AVIF_VERSION_PATCH 2 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH typedef int avifBool;