Skip to content

Commit fcb084c

Browse files
authored
v1.2.1
1 parent 5d2d1ae commit fcb084c

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

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.2.1] - 2025-03-17
12+
1113
### Added since 1.2.0
1214

1315
* Add support for outputting all frames of an image sequence in `avifdec`.
@@ -1225,7 +1227,8 @@ code.
12251227
- Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
12261228
- `avifVersion()` function
12271229

1228-
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.2.0...HEAD
1230+
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.2.1...HEAD
1231+
[1.2.1]: https://github.com/AOMediaCodec/libavif/compare/v1.2.0...v1.2.1
12291232
[1.2.0]: https://github.com/AOMediaCodec/libavif/compare/v1.1.1...v1.2.0
12301233
[1.1.1]: https://github.com/AOMediaCodec/libavif/compare/v1.1.0...v1.1.1
12311234
[1.1.0]: https://github.com/AOMediaCodec/libavif/compare/v1.0.0...v1.1.0

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if(POLICY CMP0169)
2020
cmake_policy(SET CMP0169 OLD)
2121
endif()
2222

23-
project(libavif LANGUAGES C VERSION 1.2.0)
23+
project(libavif LANGUAGES C VERSION 1.2.1)
2424

2525
# The root directory of the avif source
2626
set(AVIF_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
@@ -56,7 +56,7 @@ endif()
5656
# Increment PATCH.
5757
set(LIBRARY_VERSION_MAJOR 16)
5858
set(LIBRARY_VERSION_MINOR 2)
59-
set(LIBRARY_VERSION_PATCH 0)
59+
set(LIBRARY_VERSION_PATCH 1)
6060
set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
6161
set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})
6262

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ To link against the already installed `aom`, `libjpeg`, `libpng` and `libyuv` de
148148
libraries (recommended):
149149

150150
```sh
151-
git clone -b v1.2.0 https://github.com/AOMediaCodec/libavif.git
151+
git clone -b v1.2.1 https://github.com/AOMediaCodec/libavif.git
152152
cmake -S libavif -B libavif/build -DAVIF_CODEC_AOM=SYSTEM -DAVIF_BUILD_APPS=ON
153153
cmake --build libavif/build --parallel
154154
```
@@ -158,7 +158,7 @@ cmake --build libavif/build --parallel
158158
For development and debugging purposes:
159159

160160
```sh
161-
git clone -b v1.2.0 https://github.com/AOMediaCodec/libavif.git
161+
git clone -b v1.2.1 https://github.com/AOMediaCodec/libavif.git
162162
cmake -S libavif -B libavif/build -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=OFF -DAVIF_CODEC_AOM=LOCAL -DAVIF_LIBYUV=LOCAL -DAVIF_LIBSHARPYUV=LOCAL -DAVIF_JPEG=LOCAL -DAVIF_ZLIBPNG=LOCAL -DAVIF_BUILD_APPS=ON
163163
cmake --build libavif/build --parallel
164164
```

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 2
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)