Skip to content

Commit f938f6b

Browse files
committed
v0.10.1
1 parent e3c279d commit f938f6b

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.10.1] - 2022-04-11
10+
11+
### Changed
12+
* tests/docker/build.sh: Build SVT-AV1 using cmake and ninja directly
13+
* Fix a Visual Studio 2017 compiler warning in src\reformat.c: warning C4204:
14+
nonstandard extension used: non-constant aggregate initializer
15+
* Fix the help message of avifdec: --index takes a value
16+
917
## [0.10.0] - 2022-04-06
1018

1119
There is an incompatible ABI change in this release. New members were added to
@@ -774,7 +782,8 @@ code.
774782
- Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
775783
- `avifVersion()` function
776784

777-
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.10.0...HEAD
785+
[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.10.1...HEAD
786+
[0.10.1]: https://github.com/AOMediaCodec/libavif/compare/v0.10.0...v0.10.1
778787
[0.10.0]: https://github.com/AOMediaCodec/libavif/compare/v0.9.3...v0.10.0
779788
[0.9.3]: https://github.com/AOMediaCodec/libavif/compare/v0.9.2...v0.9.3
780789
[0.9.2]: https://github.com/AOMediaCodec/libavif/compare/v0.9.1...v0.9.2

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.5)
77
# and find_package()
88
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
99

10-
project(libavif LANGUAGES C VERSION 0.10.0)
10+
project(libavif LANGUAGES C VERSION 0.10.1)
1111

1212
# Set C99 as the default
1313
set(CMAKE_C_STANDARD 99)
@@ -21,7 +21,7 @@ set(CMAKE_C_STANDARD 99)
2121
# Increment PATCH.
2222
set(LIBRARY_VERSION_MAJOR 14)
2323
set(LIBRARY_VERSION_MINOR 0)
24-
set(LIBRARY_VERSION_PATCH 0)
24+
set(LIBRARY_VERSION_PATCH 1)
2525
set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
2626
set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})
2727

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