v0.3.0
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cd646f..092a4f5 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.3.0] - 2019-07-22 ### Added - new CMake option `AVIF_CODEC_AOM` to enable/disable the usage of AOM's codec (default: on) - new CMake option `AVIF_CODEC_DAV1D` to enable/disable the usage of dav1d's codec (default: off) @@ -94,7 +96,8 @@ - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH` - `avifVersion()` function -[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/AOMediaCodec/libavif/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/AOMediaCodec/libavif/compare/v0.1.4...v0.2.0 [0.1.4]: https://github.com/AOMediaCodec/libavif/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/AOMediaCodec/libavif/compare/v0.1.2...v0.1.3
diff --git a/include/avif/avif.h b/include/avif/avif.h index f246de9..7862e32 100644 --- a/include/avif/avif.h +++ b/include/avif/avif.h
@@ -15,7 +15,7 @@ // Constants #define AVIF_VERSION_MAJOR 0 -#define AVIF_VERSION_MINOR 2 +#define AVIF_VERSION_MINOR 3 #define AVIF_VERSION_PATCH 0 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH