Skip to content

Commit 1aadfad

Browse files
committed
v1.3.0
1 parent 0f237b5 commit 1aadfad

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
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.3.0] - 2025-05-09
12+
1113
### Added since 1.2.1
1214

1315
* Add grayscale conversions in avifImageRGBToYUV and avifImageYUVToRGB.
@@ -1268,7 +1270,8 @@ code.
12681270
- Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
12691271
- `avifVersion()` function
12701272

1271-
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.2.1...HEAD
1273+
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.3.0...HEAD
1274+
[1.3.0]: https://github.com/AOMediaCodec/libavif/compare/v1.2.1...v1.3.0
12721275
[1.2.1]: https://github.com/AOMediaCodec/libavif/compare/v1.2.0...v1.2.1
12731276
[1.2.0]: https://github.com/AOMediaCodec/libavif/compare/v1.1.1...v1.2.0
12741277
[1.1.1]: https://github.com/AOMediaCodec/libavif/compare/v1.1.0...v1.1.1

CMakeLists.txt

Lines changed: 3 additions & 3 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.2.1)
28+
project(libavif LANGUAGES C VERSION 1.3.0)
2929

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

include/avif/avif.h

Lines changed: 3 additions & 3 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 2
82-
#define AVIF_VERSION_PATCH 1
83-
#define AVIF_VERSION_DEVEL 1
81+
#define AVIF_VERSION_MINOR 3
82+
#define AVIF_VERSION_PATCH 0
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)