Skip to content

Commit 8911fcf

Browse files
committed
v1.4.0
1 parent 319b91e commit 8911fcf

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 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.0] - 2026-02-27
12+
1113
### Added since 1.3.0
1214

1315
* Allow avifenc to read png or jpeg files through stdin using --stdin-format.
@@ -66,6 +68,7 @@ The changes are relative to the previous release, unless the baseline is specifi
6668
* Remove ext/avm.cmd.
6769
* Remove the AVIF_ENABLE_EXPERIMENTAL_SAMPLE_TRANSFORM CMake flag.
6870
* Remove support for libaom versions up to 2.0.0 inclusive.
71+
* Un-export the private function avifImagePushProperty().
6972

7073
## [1.3.0] - 2025-05-09
7174

@@ -1329,7 +1332,8 @@ code.
13291332
- Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
13301333
- `avifVersion()` function
13311334

1332-
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.3.0...HEAD
1335+
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.4.0...HEAD
1336+
[1.4.0]: https://github.com/AOMediaCodec/libavif/compare/v1.3.0...v1.4.0
13331337
[1.3.0]: https://github.com/AOMediaCodec/libavif/compare/v1.2.1...v1.3.0
13341338
[1.2.1]: https://github.com/AOMediaCodec/libavif/compare/v1.2.0...v1.2.1
13351339
[1.2.0]: https://github.com/AOMediaCodec/libavif/compare/v1.1.1...v1.2.0

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if(POLICY CMP0169)
2525
cmake_policy(SET CMP0169 OLD)
2626
endif()
2727

28-
project(libavif LANGUAGES C VERSION 1.3.0)
28+
project(libavif LANGUAGES C VERSION 1.4.0)
2929

3030
# The root directory of the avif source
3131
set(AVIF_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
@@ -61,7 +61,7 @@ endif()
6161
# If the source code was changed, but there were no interface changes:
6262
# Increment PATCH.
6363
set(LIBRARY_VERSION_MAJOR 16)
64-
set(LIBRARY_VERSION_MINOR 3)
64+
set(LIBRARY_VERSION_MINOR 4)
6565
set(LIBRARY_VERSION_PATCH 0)
6666
set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
6767
set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})

include/avif/avif.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ extern "C" {
7878
// downstream projects to do greater-than preprocessor checks on AVIF_VERSION
7979
// to leverage in-development code without breaking their stable builds.
8080
#define AVIF_VERSION_MAJOR 1
81-
#define AVIF_VERSION_MINOR 3
81+
#define AVIF_VERSION_MINOR 4
8282
#define AVIF_VERSION_PATCH 0
83-
#define AVIF_VERSION_DEVEL 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)