v0.1.4
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b7f2e6..b339b0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -5,14 +5,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.1.4] - 2019-06-11 ### Added - `avifPixelFormatToString()` convenience function for debugging/printing - `avifenc` and `avifdec` "apps" which show basic bidirectional conversion to y4m -- Remove all calls to `convertXYZToXYY()` as they were all unnecessary + +### Changed - Make calling `avifImageYUVToRGB()` upon reading an avif optional - Moved `ext/aom` submodule to use official remote - Update `ext/aom` submodule to commit [38711e7fe](https://aomedia.googlesource.com/aom/+/38711e7fe1eff68296b0324a9809804aec359fa5) +### Removed +- Remove all calls to `convertXYZToXYY()` as they were all unnecessary + ## [0.1.3] - 2019-04-23 ### Changed - `ftyp` - Change `major_brand` to `avif` @@ -47,7 +53,8 @@ - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH` - `avifVersion()` function -[Unreleased]: https://github.com/joedrago/avif/compare/v0.1.3...HEAD +[Unreleased]: https://github.com/joedrago/avif/compare/v0.1.4...HEAD +[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 [0.1.1]: https://github.com/joedrago/avif/compare/v0.1.0...v0.1.1
diff --git a/include/avif/avif.h b/include/avif/avif.h index 68c1d7e..170e7c6 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 3 +#define AVIF_VERSION_PATCH 4 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH typedef int avifBool;