Skip to content

Commit 183485b

Browse files
authored
v1.1.0
1 parent 508f00f commit 183485b

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

CHANGELOG.md

+4-1
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.1.0] - 2024-07-11
12+
1113
### Added since 1.0.0
1214
* Add experimental API for reading and writing gain maps in AVIF files.
1315
If enabled at compile time, add `gainMap` field to `avifImage`,
@@ -1106,7 +1108,8 @@ code.
11061108
- Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
11071109
- `avifVersion()` function
11081110

1109-
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.0.0...HEAD
1111+
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.1.0...HEAD
1112+
[1.1.0]: https://github.com/AOMediaCodec/libavif/compare/v1.0.0...v1.1.0
11101113
[1.0.4]: https://github.com/AOMediaCodec/libavif/compare/v1.0.3...v1.0.4
11111114
[1.0.3]: https://github.com/AOMediaCodec/libavif/compare/v1.0.2...v1.0.3
11121115
[1.0.2]: https://github.com/AOMediaCodec/libavif/compare/v1.0.1...v1.0.2

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ include(FetchContent)
2525
include(FindPkgConfig)
2626
include(AvifExternalProjectUtils)
2727

28-
project(libavif LANGUAGES C VERSION 1.0.4)
28+
project(libavif LANGUAGES C VERSION 1.1.0)
2929

3030
# Set C99 as the default
3131
set(CMAKE_C_STANDARD 99)
@@ -38,8 +38,8 @@ set(CMAKE_C_STANDARD 99)
3838
# If the source code was changed, but there were no interface changes:
3939
# Increment PATCH.
4040
set(LIBRARY_VERSION_MAJOR 16)
41-
set(LIBRARY_VERSION_MINOR 0)
42-
set(LIBRARY_VERSION_PATCH 4)
41+
set(LIBRARY_VERSION_MINOR 1)
42+
set(LIBRARY_VERSION_PATCH 0)
4343
set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
4444
set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})
4545

include/avif/avif.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ extern "C" {
8383
// downstream projects to do greater-than preprocessor checks on AVIF_VERSION
8484
// to leverage in-development code without breaking their stable builds.
8585
#define AVIF_VERSION_MAJOR 1
86-
#define AVIF_VERSION_MINOR 0
87-
#define AVIF_VERSION_PATCH 4
88-
#define AVIF_VERSION_DEVEL 1
86+
#define AVIF_VERSION_MINOR 1
87+
#define AVIF_VERSION_PATCH 0
88+
#define AVIF_VERSION_DEVEL 0
8989
#define AVIF_VERSION \
9090
((AVIF_VERSION_MAJOR * 1000000) + (AVIF_VERSION_MINOR * 10000) + (AVIF_VERSION_PATCH * 100) + AVIF_VERSION_DEVEL)
9191

0 commit comments

Comments
 (0)