diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a94f22e2b..8f4c822a7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.1] - 2022-04-11 + +### Changed +* tests/docker/build.sh: Build SVT-AV1 using cmake and ninja directly +* Fix a Visual Studio 2017 compiler warning in src\reformat.c: warning C4204: + nonstandard extension used: non-constant aggregate initializer +* Fix the help message of avifdec: --index takes a value + ## [0.10.0] - 2022-04-06 There is an incompatible ABI change in this release. New members were added to @@ -774,7 +782,8 @@ code. - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH` - `avifVersion()` function -[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.10.0...HEAD +[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.10.1...HEAD +[0.10.1]: https://github.com/AOMediaCodec/libavif/compare/v0.10.0...v0.10.1 [0.10.0]: https://github.com/AOMediaCodec/libavif/compare/v0.9.3...v0.10.0 [0.9.3]: https://github.com/AOMediaCodec/libavif/compare/v0.9.2...v0.9.3 [0.9.2]: https://github.com/AOMediaCodec/libavif/compare/v0.9.1...v0.9.2 diff --git a/CMakeLists.txt b/CMakeLists.txt index 7996ee4607..2d99dc12b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.5) # and find_package() list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules") -project(libavif LANGUAGES C VERSION 0.10.0) +project(libavif LANGUAGES C VERSION 0.10.1) # Set C99 as the default set(CMAKE_C_STANDARD 99) @@ -21,7 +21,7 @@ set(CMAKE_C_STANDARD 99) # Increment PATCH. set(LIBRARY_VERSION_MAJOR 14) set(LIBRARY_VERSION_MINOR 0) -set(LIBRARY_VERSION_PATCH 0) +set(LIBRARY_VERSION_PATCH 1) set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}") set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR}) diff --git a/include/avif/avif.h b/include/avif/avif.h index 7f5bdf1161..226d1c59e2 100644 --- a/include/avif/avif.h +++ b/include/avif/avif.h @@ -57,8 +57,8 @@ extern "C" { // to leverage in-development code without breaking their stable builds. #define AVIF_VERSION_MAJOR 0 #define AVIF_VERSION_MINOR 10 -#define AVIF_VERSION_PATCH 0 -#define AVIF_VERSION_DEVEL 1 +#define AVIF_VERSION_PATCH 1 +#define AVIF_VERSION_DEVEL 0 #define AVIF_VERSION \ ((AVIF_VERSION_MAJOR * 1000000) + (AVIF_VERSION_MINOR * 10000) + (AVIF_VERSION_PATCH * 100) + AVIF_VERSION_DEVEL)