v0.6.0
diff --git a/CHANGELOG.md b/CHANGELOG.md index e8b70a4..8eb76ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -5,9 +5,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.6.0] - 2020-03-09 ### Added -- Update default dav1d version to 0.6.0 -- Update default rav1e version to v0.3.1 - `avifRGBImage` structure and associated routines (BREAKING CHANGE) - avifImage alphaRange support - Support pasp, clap, irot, imir metadata for encode/decode @@ -19,6 +19,8 @@ - Lots of minor cleanup in code/CMake (wantehchang) - Fix to NCLX color profile plumbing (ledyba-z) - Cleanup unnecessary avifBool ternary expressions +- Update default dav1d version to 0.6.0 +- Update default rav1e version to v0.3.1 ## [0.5.7] - 2020-03-03 ### Added @@ -325,7 +327,8 @@ - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH` - `avifVersion()` function -[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.5.7...HEAD +[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.6.0...HEAD +[0.6.0]: https://github.com/AOMediaCodec/libavif/compare/v0.5.7...v0.6.0 [0.5.7]: https://github.com/AOMediaCodec/libavif/compare/v0.5.6...v0.5.7 [0.5.6]: https://github.com/AOMediaCodec/libavif/compare/v0.5.5...v0.5.6 [0.5.5]: https://github.com/AOMediaCodec/libavif/compare/v0.5.4...v0.5.5
diff --git a/CMakeLists.txt b/CMakeLists.txt index 240c4d1..59b109f 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.5.7) +project(libavif LANGUAGES C CXX VERSION 0.6.0) # SOVERSION scheme: CURRENT.AGE.REVISION # If there was an incompatible interface change: @@ -16,7 +16,7 @@ # Increment AGE. Set REVISION to 0 # If the source code was changed, but there were no interface changes: # Increment REVISION. -set(LIBRARY_VERSION "1.0.0") +set(LIBRARY_VERSION "2.0.0") set(LIBRARY_SOVERSION "0") option(BUILD_SHARED_LIBS "Build shared avif library" ON)
diff --git a/include/avif/avif.h b/include/avif/avif.h index e2e4cbb..4418d21 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 5 -#define AVIF_VERSION_PATCH 7 +#define AVIF_VERSION_MINOR 6 +#define AVIF_VERSION_PATCH 0 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH typedef int avifBool;