From 238ec47fb19fcd220ade9ac159364c45ae5717ad Mon Sep 17 00:00:00 2001 From: Wan-Teh Chang Date: Thu, 16 Nov 2023 15:32:44 -0800 Subject: [PATCH] Update the version to 1.0.2 (devel flag on) --- CHANGELOG.md | 9 +++++++++ CMakeLists.txt | 4 ++-- include/avif/avif.h | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee6ccb3d1c..f78ea67525 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,6 +58,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * avifenc: Change the default value of the --jobs option from 1 to "all". * Update avifCropRectConvertCleanApertureBox() to the revised requirements in ISO/IEC 23000-22:2019/Amd. 2:2021 Section 7.3.6.7. +* Fix memory errors reported in crbug.com/1501766 and crbug.com/1501770. + +## [1.0.2] - 2023-11-16 + +### Changed +* Update avifCropRectConvertCleanApertureBox() to the revised requirements in + ISO/IEC 23000-22:2019/Amd. 2:2021 Section 7.3.6.7. +* Fix memory errors reported in crbug.com/1501766 and crbug.com/1501770. ## [1.0.1] - 2023-08-29 @@ -1033,6 +1041,7 @@ code. - `avifVersion()` function [Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.0.0...HEAD +[1.0.2]: https://github.com/AOMediaCodec/libavif/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/AOMediaCodec/libavif/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/AOMediaCodec/libavif/compare/v0.11.1...v1.0.0 [0.11.1]: https://github.com/AOMediaCodec/libavif/compare/v0.11.0...v0.11.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 08262d756b..61c515c587 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ endif() # Specify search path for CMake modules to be loaded by include() and find_package() list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules") -project(libavif LANGUAGES C VERSION 1.0.1) +project(libavif LANGUAGES C VERSION 1.0.2) # Set C99 as the default set(CMAKE_C_STANDARD 99) @@ -25,7 +25,7 @@ set(CMAKE_C_STANDARD 99) # Increment PATCH. set(LIBRARY_VERSION_MAJOR 16) set(LIBRARY_VERSION_MINOR 0) -set(LIBRARY_VERSION_PATCH 1) +set(LIBRARY_VERSION_PATCH 2) 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 d82e8aff14..eabfabc76a 100644 --- a/include/avif/avif.h +++ b/include/avif/avif.h @@ -72,7 +72,7 @@ extern "C" { // to leverage in-development code without breaking their stable builds. #define AVIF_VERSION_MAJOR 1 #define AVIF_VERSION_MINOR 0 -#define AVIF_VERSION_PATCH 1 +#define AVIF_VERSION_PATCH 2 #define AVIF_VERSION_DEVEL 1 #define AVIF_VERSION \ ((AVIF_VERSION_MAJOR * 1000000) + (AVIF_VERSION_MINOR * 10000) + (AVIF_VERSION_PATCH * 100) + AVIF_VERSION_DEVEL)