Skip to content

Commit a28899a

Browse files
authored
v1.2.0
1 parent 96fc68a commit a28899a

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.2.0] - 2025-02-25
12+
1113
### Added since 1.1.1
1214
* Turn on the gain map API. Remove the AVIF_ENABLE_EXPERIMENTAL_GAIN_MAP CMake
1315
flag.
@@ -1210,7 +1212,8 @@ code.
12101212
- Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
12111213
- `avifVersion()` function
12121214

1213-
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.1.1...HEAD
1215+
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.2.0...HEAD
1216+
[1.2.0]: https://github.com/AOMediaCodec/libavif/compare/v1.1.1...v1.2.0
12141217
[1.1.1]: https://github.com/AOMediaCodec/libavif/compare/v1.1.0...v1.1.1
12151218
[1.1.0]: https://github.com/AOMediaCodec/libavif/compare/v1.0.0...v1.1.0
12161219
[1.0.4]: https://github.com/AOMediaCodec/libavif/compare/v1.0.3...v1.0.4

CMakeLists.txt

Lines changed: 3 additions & 3 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.1.1)
23+
project(libavif LANGUAGES C VERSION 1.2.0)
2424

2525
# The root directory of the avif source
2626
set(AVIF_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
@@ -55,8 +55,8 @@ endif()
5555
# If the source code was changed, but there were no interface changes:
5656
# Increment PATCH.
5757
set(LIBRARY_VERSION_MAJOR 16)
58-
set(LIBRARY_VERSION_MINOR 1)
59-
set(LIBRARY_VERSION_PATCH 1)
58+
set(LIBRARY_VERSION_MINOR 2)
59+
set(LIBRARY_VERSION_PATCH 0)
6060
set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
6161
set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})
6262

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 1
82-
#define AVIF_VERSION_PATCH 1
83-
#define AVIF_VERSION_DEVEL 1
81+
#define AVIF_VERSION_MINOR 2
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)