Skip to content

Commit 6ab5318

Browse files
authored
v0.11.1
1 parent b9366f0 commit 6ab5318

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.11.1] - 2022-10-19
10+
11+
### Changed
12+
* avifincrtest_helpers: Cast 64-bit offset to size_t
13+
* avifmetadatatest: don't include avif/internal.h
14+
* avifrgbtoyuvtest: skip if no libsharpyuv
15+
* Disable tests that may fail if the codec is not aom (#1176)
16+
917
## [0.11.0] - 2022-10-12
1018

1119
There are incompatible ABI changes in this release. The alphaRange member was
@@ -866,7 +874,8 @@ code.
866874
- Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
867875
- `avifVersion()` function
868876

869-
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.11.0...HEAD
877+
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.11.1...HEAD
878+
[0.11.1]: https://github.com/AOMediaCodec/libavif/compare/v0.11.0...v0.11.1
870879
[0.11.0]: https://github.com/AOMediaCodec/libavif/compare/v0.10.1...v0.11.0
871880
[0.10.1]: https://github.com/AOMediaCodec/libavif/compare/v0.10.0...v0.10.1
872881
[0.10.0]: https://github.com/AOMediaCodec/libavif/compare/v0.9.3...v0.10.0

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ endif()
1111
# Specify search path for CMake modules to be loaded by include() and find_package()
1212
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
1313

14-
project(libavif LANGUAGES C VERSION 0.11.0)
14+
project(libavif LANGUAGES C VERSION 0.11.1)
1515

1616
# Set C99 as the default
1717
set(CMAKE_C_STANDARD 99)
@@ -25,7 +25,7 @@ set(CMAKE_C_STANDARD 99)
2525
# Increment PATCH.
2626
set(LIBRARY_VERSION_MAJOR 15)
2727
set(LIBRARY_VERSION_MINOR 0)
28-
set(LIBRARY_VERSION_PATCH 0)
28+
set(LIBRARY_VERSION_PATCH 1)
2929
set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
3030
set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})
3131

include/avif/avif.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ extern "C" {
5757
// to leverage in-development code without breaking their stable builds.
5858
#define AVIF_VERSION_MAJOR 0
5959
#define AVIF_VERSION_MINOR 11
60-
#define AVIF_VERSION_PATCH 0
61-
#define AVIF_VERSION_DEVEL 1
60+
#define AVIF_VERSION_PATCH 1
61+
#define AVIF_VERSION_DEVEL 0
6262
#define AVIF_VERSION \
6363
((AVIF_VERSION_MAJOR * 1000000) + (AVIF_VERSION_MINOR * 10000) + (AVIF_VERSION_PATCH * 100) + AVIF_VERSION_DEVEL)
6464

0 commit comments

Comments
 (0)