v0.6.4
diff --git a/CHANGELOG.md b/CHANGELOG.md index 235b558..f7073f8 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.6.4] - 2020-04-14 ### Added - Added `avifDecoderNthImageTiming()` for querying frame timing without needing to decode the frame - Added some comments explaining `avifDecoderSetSource()` @@ -362,7 +364,8 @@ - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH` - `avifVersion()` function -[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.6.3...HEAD +[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.6.4...HEAD +[0.6.4]: https://github.com/AOMediaCodec/libavif/compare/v0.6.3...v0.6.4 [0.6.3]: https://github.com/AOMediaCodec/libavif/compare/v0.6.2...v0.6.3 [0.6.2]: https://github.com/AOMediaCodec/libavif/compare/v0.6.1...v0.6.2 [0.6.1]: https://github.com/AOMediaCodec/libavif/compare/v0.6.0...v0.6.1
diff --git a/CMakeLists.txt b/CMakeLists.txt index c122aa1..1d7a44b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -7,7 +7,7 @@ # and find_package() list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules") -project(libavif LANGUAGES C CXX VERSION 0.6.3) +project(libavif LANGUAGES C CXX VERSION 0.6.4) # SOVERSION scheme: MAJOR.MINOR.PATCH # If there was an incompatible interface change: @@ -17,7 +17,7 @@ # If the source code was changed, but there were no interface changes: # Increment PATCH. set(LIBRARY_VERSION_MAJOR 2) -set(LIBRARY_VERSION_MINOR 1) +set(LIBRARY_VERSION_MINOR 2) set(LIBRARY_VERSION_PATCH 0) set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}") set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})
diff --git a/include/avif/avif.h b/include/avif/avif.h index d07a3d6..0516fac 100644 --- a/include/avif/avif.h +++ b/include/avif/avif.h
@@ -16,7 +16,7 @@ #define AVIF_VERSION_MAJOR 0 #define AVIF_VERSION_MINOR 6 -#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;