From 56a22c4e8571225813ab3ad50abc820561004a7f Mon Sep 17 00:00:00 2001 From: Joe Drago Date: Fri, 24 Apr 2020 11:44:11 -0700 Subject: [PATCH] v0.7.2 --- CHANGELOG.md | 15 ++++++++++++++- CMakeLists.txt | 6 +++--- include/avif/avif.h | 2 +- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d214c5367d..19c8d089ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.7.2] - 2020-04-24 +### Added +- Recognize extensions with capital letters / capslock +- Proper support for AVIF_NCLX_MATRIX_COEFFICIENTS_IDENTITY + ### Changed +- Large nclx enum refactor (breaking change), reworking all 3 enums to better match AV1 codec enums +- Fixes to 'essential' item properties (marking av1C as essential, ignoring any items containing unsupported essential props) - avifenc - Allow --nclx to override embedded ICC profiles (with a warning), instead of --nclx being ignored - avifenc - Choose high-quality-but-lossy QP defaults, and a default speed of 8 - avifdump - Fix format specifiers for 32bit - Now prioritizing libaom over rav1e when both are present +- Remove `-Wclobbered` dodging (volatile) and instead just disable the warning in avifpng/avifjpeg +- avifyuv: extra testing modes +- Cleanup to avifCodecVersions() +- Reorganize iccjpeg code back into its own files for licensing conveniences ## [0.7.1] - 2020-04-16 ### Changed @@ -384,7 +396,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH` - `avifVersion()` function -[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.7.1...HEAD +[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.7.2...HEAD +[0.7.2]: https://github.com/AOMediaCodec/libavif/compare/v0.7.1...v0.7.2 [0.7.1]: https://github.com/AOMediaCodec/libavif/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/AOMediaCodec/libavif/compare/v0.6.4...v0.7.0 [0.6.4]: https://github.com/AOMediaCodec/libavif/compare/v0.6.3...v0.6.4 diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f547dfec3..ead053c477 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.5) # and find_package() list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules") -project(libavif LANGUAGES C CXX VERSION 0.7.1) +project(libavif LANGUAGES C CXX VERSION 0.7.2) # SOVERSION scheme: MAJOR.MINOR.PATCH # If there was an incompatible interface change: @@ -16,9 +16,9 @@ project(libavif LANGUAGES C CXX VERSION 0.7.1) # Increment MINOR. Set PATCH to 0 # If the source code was changed, but there were no interface changes: # Increment PATCH. -set(LIBRARY_VERSION_MAJOR 3) +set(LIBRARY_VERSION_MAJOR 4) set(LIBRARY_VERSION_MINOR 0) -set(LIBRARY_VERSION_PATCH 1) +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 ad97ef74a6..f0d238b47c 100644 --- a/include/avif/avif.h +++ b/include/avif/avif.h @@ -16,7 +16,7 @@ extern "C" { #define AVIF_VERSION_MAJOR 0 #define AVIF_VERSION_MINOR 7 -#define AVIF_VERSION_PATCH 1 +#define AVIF_VERSION_PATCH 2 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH typedef int avifBool;