File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.0.4] - 2024-02-08
10
+
9
11
### Changed
10
12
* AVIF_ENABLE_WERROR is set to OFF by default.
11
13
* Fix wrong alpha plane deallocation when decoded tile pixel format does not
@@ -1006,6 +1008,7 @@ code.
1006
1008
- ` avifVersion() ` function
1007
1009
1008
1010
[ Unreleased ] : https://github.com/AOMediaCodec/libavif/compare/v1.0.0...HEAD
1011
+ [ 1.0.4 ] : https://github.com/AOMediaCodec/libavif/compare/v1.0.3...v1.0.4
1009
1012
[ 1.0.3 ] : https://github.com/AOMediaCodec/libavif/compare/v1.0.2...v1.0.3
1010
1013
[ 1.0.2 ] : https://github.com/AOMediaCodec/libavif/compare/v1.0.1...v1.0.2
1011
1014
[ 1.0.1 ] : https://github.com/AOMediaCodec/libavif/compare/v1.0.0...v1.0.1
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ endif()
11
11
# Specify search path for CMake modules to be loaded by include() and find_package()
12
12
list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake/Modules" )
13
13
14
- project (libavif LANGUAGES C VERSION 1.0.3 )
14
+ project (libavif LANGUAGES C VERSION 1.0.4 )
15
15
16
16
# Set C99 as the default
17
17
set (CMAKE_C_STANDARD 99 )
@@ -25,7 +25,7 @@ set(CMAKE_C_STANDARD 99)
25
25
# Increment PATCH.
26
26
set (LIBRARY_VERSION_MAJOR 16 )
27
27
set (LIBRARY_VERSION_MINOR 0 )
28
- set (LIBRARY_VERSION_PATCH 3 )
28
+ set (LIBRARY_VERSION_PATCH 4 )
29
29
set (LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR} .${LIBRARY_VERSION_MINOR} .${LIBRARY_VERSION_PATCH} " )
30
30
set (LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR} )
31
31
Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ extern "C" {
57
57
// to leverage in-development code without breaking their stable builds.
58
58
#define AVIF_VERSION_MAJOR 1
59
59
#define AVIF_VERSION_MINOR 0
60
- #define AVIF_VERSION_PATCH 3
61
- #define AVIF_VERSION_DEVEL 1
60
+ #define AVIF_VERSION_PATCH 4
61
+ #define AVIF_VERSION_DEVEL 0
62
62
#define AVIF_VERSION \
63
63
((AVIF_VERSION_MAJOR * 1000000) + (AVIF_VERSION_MINOR * 10000) + (AVIF_VERSION_PATCH * 100) + AVIF_VERSION_DEVEL)
64
64
You can’t perform that action at this time.
0 commit comments