From d1c26facaf5a8a97919ceee06814d05d10e25622 Mon Sep 17 00:00:00 2001 From: Wan-Teh Chang Date: Tue, 29 Aug 2023 11:24:22 -0700 Subject: [PATCH] v1.0.1 --- CHANGELOG.md | 7 +++++++ CMakeLists.txt | 4 ++-- include/avif/avif.h | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0389b0dfb8..f656a0f073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.1] - 2023-08-29 + +### Changed +* gdk-pixbuf: Explicitly pass link directories +* gdk-pixbuf: Fix build failure after imir.mode -> imir.axis rename + ## [1.0.0] - 2023-08-24 With the 1.0.0 release, the ABI will be more stable from now on. Please note @@ -974,6 +980,7 @@ code. - `avifVersion()` function [Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v1.0.0...HEAD +[1.0.1]: https://github.com/AOMediaCodec/libavif/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/AOMediaCodec/libavif/compare/v0.11.1...v1.0.0 [0.11.1]: https://github.com/AOMediaCodec/libavif/compare/v0.11.0...v0.11.1 [0.11.0]: https://github.com/AOMediaCodec/libavif/compare/v0.10.1...v0.11.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index c39ab1c45d..1f0cde12f4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ endif() # Specify search path for CMake modules to be loaded by include() and find_package() list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules") -project(libavif LANGUAGES C VERSION 1.0.0) +project(libavif LANGUAGES C VERSION 1.0.1) # Set C99 as the default set(CMAKE_C_STANDARD 99) @@ -25,7 +25,7 @@ set(CMAKE_C_STANDARD 99) # Increment PATCH. set(LIBRARY_VERSION_MAJOR 16) 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 ac7d3cac79..04a7bdbf3b 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 1 #define AVIF_VERSION_MINOR 0 -#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)