Skip to content

Commit bb24db0

Browse files
committed
v1.1.1
1 parent 3ce89ff commit bb24db0

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 7 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.1.1] - 2024-07-30
12+
1113
### Changed since 1.1.0
1214
* In avif.h, change "AVIF_API AVIF_NODISCARD" back to "AVIF_NODISCARD AVIF_API"
1315
to fix clang-cl and MSVC compilation errors in the shared library build on
@@ -21,6 +23,9 @@ The changes are relative to the previous release, unless the baseline is specifi
2123
* Fix CMake config shared library leaks
2224
https://github.com/AOMediaCodec/libavif/issues/2264.
2325
* Fix clang-cl compilation.
26+
* Update gain map metadata to current ISO 21496-1 draft.
27+
* cmake: Only search for ASM_NASM language on x86_64 platforms.
28+
* Fix "No known features for CXX compiler" CMake error.
2429
* Fix aom link flags so that transitive library link flags are included when
2530
aom is a static library
2631
https://github.com/AOMediaCodec/libavif/issues/2274.
@@ -1129,7 +1134,8 @@ code.
11291134
- Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
11301135
- `avifVersion()` function
11311136

1132-
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.1.0...HEAD
1137+
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.1.1...HEAD
1138+
[1.1.1]: https://github.com/AOMediaCodec/libavif/compare/v1.1.0...v1.1.1
11331139
[1.1.0]: https://github.com/AOMediaCodec/libavif/compare/v1.0.0...v1.1.0
11341140
[1.0.4]: https://github.com/AOMediaCodec/libavif/compare/v1.0.3...v1.0.4
11351141
[1.0.3]: https://github.com/AOMediaCodec/libavif/compare/v1.0.2...v1.0.3

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.1.0)
23+
project(libavif LANGUAGES C VERSION 1.1.1)
2424

2525
# The root directory of the avif source
2626
set(AVIF_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
@@ -45,7 +45,7 @@ set(CMAKE_C_STANDARD 99)
4545
# Increment PATCH.
4646
set(LIBRARY_VERSION_MAJOR 16)
4747
set(LIBRARY_VERSION_MINOR 1)
48-
set(LIBRARY_VERSION_PATCH 0)
48+
set(LIBRARY_VERSION_PATCH 1)
4949
set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
5050
set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})
5151

include/avif/avif.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ extern "C" {
7373
// to leverage in-development code without breaking their stable builds.
7474
#define AVIF_VERSION_MAJOR 1
7575
#define AVIF_VERSION_MINOR 1
76-
#define AVIF_VERSION_PATCH 0
77-
#define AVIF_VERSION_DEVEL 1
76+
#define AVIF_VERSION_PATCH 1
77+
#define AVIF_VERSION_DEVEL 0
7878
#define AVIF_VERSION \
7979
((AVIF_VERSION_MAJOR * 1000000) + (AVIF_VERSION_MINOR * 10000) + (AVIF_VERSION_PATCH * 100) + AVIF_VERSION_DEVEL)
8080

0 commit comments

Comments
 (0)