v0.4.5
diff --git a/CHANGELOG.md b/CHANGELOG.md index a479cc2..b82aaa7 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.4.5] - 2019-10-30 ### Changed - Fix rav1e codec's alpha encoding (monochrome asserts, might be unsupported still) @@ -213,7 +215,8 @@ - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH` - `avifVersion()` function -[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.4.4...HEAD +[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.4.5...HEAD +[0.4.5]: https://github.com/AOMediaCodec/libavif/compare/v0.4.4...v0.4.5 [0.4.4]: https://github.com/AOMediaCodec/libavif/compare/v0.4.3...v0.4.4 [0.4.3]: https://github.com/AOMediaCodec/libavif/compare/v0.4.2...v0.4.3 [0.4.2]: https://github.com/AOMediaCodec/libavif/compare/v0.4.1...v0.4.2
diff --git a/include/avif/avif.h b/include/avif/avif.h index 9f85887..3b67063 100644 --- a/include/avif/avif.h +++ b/include/avif/avif.h
@@ -16,7 +16,7 @@ #define AVIF_VERSION_MAJOR 0 #define AVIF_VERSION_MINOR 4 -#define AVIF_VERSION_PATCH 4 +#define AVIF_VERSION_PATCH 5 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH typedef int avifBool;