Skip to content

Commit 6543b22

Browse files
authored
v1.4.1
1 parent 33d0aee commit 6543b22

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ The changes are relative to the previous release, unless the baseline is specifi
88

99
## [Unreleased]
1010

11+
## [1.4.1] - 2026-03-20
12+
1113
### Changed since 1.4.0
1214

1315
* Fix build with CMake 3.22
@@ -1354,7 +1356,8 @@ code.
13541356
- Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
13551357
- `avifVersion()` function
13561358

1357-
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.4.0...HEAD
1359+
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.4.1...HEAD
1360+
[1.4.1]: https://github.com/AOMediaCodec/libavif/compare/v1.4.0...v1.4.1
13581361
[1.4.0]: https://github.com/AOMediaCodec/libavif/compare/v1.3.0...v1.4.0
13591362
[1.3.0]: https://github.com/AOMediaCodec/libavif/compare/v1.2.1...v1.3.0
13601363
[1.2.1]: https://github.com/AOMediaCodec/libavif/compare/v1.2.0...v1.2.1

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if(POLICY CMP0194)
3131
cmake_policy(SET CMP0194 NEW)
3232
endif()
3333

34-
project(libavif LANGUAGES C VERSION 1.4.0)
34+
project(libavif LANGUAGES C VERSION 1.4.1)
3535

3636
# The root directory of the avif source
3737
set(AVIF_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
@@ -68,7 +68,7 @@ endif()
6868
# Increment PATCH.
6969
set(LIBRARY_VERSION_MAJOR 16)
7070
set(LIBRARY_VERSION_MINOR 4)
71-
set(LIBRARY_VERSION_PATCH 0)
71+
set(LIBRARY_VERSION_PATCH 1)
7272
set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
7373
set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})
7474

include/avif/avif.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ extern "C" {
7979
// to leverage in-development code without breaking their stable builds.
8080
#define AVIF_VERSION_MAJOR 1
8181
#define AVIF_VERSION_MINOR 4
82-
#define AVIF_VERSION_PATCH 0
83-
#define AVIF_VERSION_DEVEL 1
82+
#define AVIF_VERSION_PATCH 1
83+
#define AVIF_VERSION_DEVEL 0
8484
#define AVIF_VERSION \
8585
((AVIF_VERSION_MAJOR * 1000000) + (AVIF_VERSION_MINOR * 10000) + (AVIF_VERSION_PATCH * 100) + AVIF_VERSION_DEVEL)
8686

0 commit comments

Comments
 (0)