File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 1.0.2] - 2023-11-16
10+
911### Changed
1012* Update avifCropRectConvertCleanApertureBox() to the revised requirements in
1113 ISO/IEC 23000-22:2019/Amd. 2:2021 Section 7.3.6.7.
14+ * Fix memory errors reported in crbug.com/1501766 and crbug.com/1501770.
1215
1316## [ 1.0.1] - 2023-08-29
1417
@@ -984,6 +987,7 @@ code.
984987- ` avifVersion() ` function
985988
986989[ Unreleased ] : https://github.com/AOMediaCodec/libavif/compare/v1.0.0...HEAD
990+ [ 1.0.2 ] : https://github.com/AOMediaCodec/libavif/compare/v1.0.1...v1.0.2
987991[ 1.0.1 ] : https://github.com/AOMediaCodec/libavif/compare/v1.0.0...v1.0.1
988992[ 1.0.0 ] : https://github.com/AOMediaCodec/libavif/compare/v0.11.1...v1.0.0
989993[ 0.11.1 ] : https://github.com/AOMediaCodec/libavif/compare/v0.11.0...v0.11.1
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ endif()
1111# Specify search path for CMake modules to be loaded by include() and find_package()
1212list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake/Modules" )
1313
14- project (libavif LANGUAGES C VERSION 1.0.1 )
14+ project (libavif LANGUAGES C VERSION 1.0.2 )
1515
1616# Set C99 as the default
1717set (CMAKE_C_STANDARD 99)
@@ -25,7 +25,7 @@ set(CMAKE_C_STANDARD 99)
2525# Increment PATCH.
2626set (LIBRARY_VERSION_MAJOR 16)
2727set (LIBRARY_VERSION_MINOR 0)
28- set (LIBRARY_VERSION_PATCH 1 )
28+ set (LIBRARY_VERSION_PATCH 2 )
2929set (LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR} .${LIBRARY_VERSION_MINOR} .${LIBRARY_VERSION_PATCH} " )
3030set (LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR} )
3131
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ extern "C" {
5757// to leverage in-development code without breaking their stable builds.
5858#define AVIF_VERSION_MAJOR 1
5959#define AVIF_VERSION_MINOR 0
60- #define AVIF_VERSION_PATCH 1
60+ #define AVIF_VERSION_PATCH 2
6161#define AVIF_VERSION_DEVEL 0
6262#define AVIF_VERSION \
6363 ((AVIF_VERSION_MAJOR * 1000000) + (AVIF_VERSION_MINOR * 10000) + (AVIF_VERSION_PATCH * 100) + AVIF_VERSION_DEVEL)
You can’t perform that action at this time.
0 commit comments