v0.2.0
diff --git a/CHANGELOG.md b/CHANGELOG.md index aa1407c..a847ccf 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.2.0] - 2019-06-12 ### Added - Added `avifEncoder` and `avifDecoder` to match `avifImage`'s pattern and allow for easier future parameterization @@ -60,7 +62,8 @@ - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH` - `avifVersion()` function -[Unreleased]: https://github.com/joedrago/avif/compare/v0.1.4...HEAD +[Unreleased]: https://github.com/joedrago/avif/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/joedrago/avif/compare/v0.1.4...v0.2.0 [0.1.4]: https://github.com/joedrago/avif/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/joedrago/avif/compare/v0.1.2...v0.1.3 [0.1.2]: https://github.com/joedrago/avif/compare/v0.1.1...v0.1.2
diff --git a/include/avif/avif.h b/include/avif/avif.h index be7a9fa..54a67cd 100644 --- a/include/avif/avif.h +++ b/include/avif/avif.h
@@ -15,8 +15,8 @@ // Constants #define AVIF_VERSION_MAJOR 0 -#define AVIF_VERSION_MINOR 1 -#define AVIF_VERSION_PATCH 4 +#define AVIF_VERSION_MINOR 2 +#define AVIF_VERSION_PATCH 0 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH typedef int avifBool;