Commit d1c26fa 1 parent 26224fe commit d1c26fa Copy full SHA for d1c26fa
File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.0.1] - 2023-08-29
10
+
11
+ ### Changed
12
+ * gdk-pixbuf: Explicitly pass link directories
13
+ * gdk-pixbuf: Fix build failure after imir.mode -> imir.axis rename
14
+
9
15
## [ 1.0.0] - 2023-08-24
10
16
11
17
With the 1.0.0 release, the ABI will be more stable from now on. Please note
@@ -974,6 +980,7 @@ code.
974
980
- ` avifVersion() ` function
975
981
976
982
[ Unreleased ] : https://github.com/AOMediaCodec/libavif/compare/v1.0.0...HEAD
983
+ [ 1.0.1 ] : https://github.com/AOMediaCodec/libavif/compare/v1.0.0...v1.0.1
977
984
[ 1.0.0 ] : https://github.com/AOMediaCodec/libavif/compare/v0.11.1...v1.0.0
978
985
[ 0.11.1 ] : https://github.com/AOMediaCodec/libavif/compare/v0.11.0...v0.11.1
979
986
[ 0.11.0 ] : https://github.com/AOMediaCodec/libavif/compare/v0.10.1...v0.11.0
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.0 )
14
+ project (libavif LANGUAGES C VERSION 1.0.1 )
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 0 )
28
+ set (LIBRARY_VERSION_PATCH 1 )
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 0
61
- #define AVIF_VERSION_DEVEL 1
60
+ #define AVIF_VERSION_PATCH 1
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