v0.8.2
diff --git a/CHANGELOG.md b/CHANGELOG.md index 89682a5..4c5f2cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -5,8 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.8.2] - 2020-10-14 ### Added -* avifIO reader API: allowing for parsing / image decoding without having the entire AVIF payload yet +* `avifIO` reader API: allowing for parsing / image decoding without having the entire AVIF payload yet * Codec-specific options plumbing for advanced encoding settings * Add libaom codec-specific options (wantehchang) * avifenc: Allow endusers to ignore an AVIF's ICC profile during conversion (`--ignore-icc`) @@ -499,7 +501,8 @@ - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH` - `avifVersion()` function -[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.8.1...HEAD +[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.8.2...HEAD +[0.8.2]: https://github.com/AOMediaCodec/libavif/compare/v0.8.1...v0.8.2 [0.8.1]: https://github.com/AOMediaCodec/libavif/compare/v0.8.0...v0.8.1 [0.8.0]: https://github.com/AOMediaCodec/libavif/compare/v0.7.3...v0.8.0 [0.7.3]: https://github.com/AOMediaCodec/libavif/compare/v0.7.2...v0.7.3
diff --git a/CMakeLists.txt b/CMakeLists.txt index b630cdd..9530171 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -7,7 +7,7 @@ # and find_package() list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules") -project(libavif LANGUAGES C VERSION 0.8.1) +project(libavif LANGUAGES C VERSION 0.8.2) # Set C99 as the default set(CMAKE_C_STANDARD 99) @@ -19,7 +19,7 @@ # Increment MINOR. Set PATCH to 0 # If the source code was changed, but there were no interface changes: # Increment PATCH. -set(LIBRARY_VERSION_MAJOR 6) +set(LIBRARY_VERSION_MAJOR 7) set(LIBRARY_VERSION_MINOR 0) set(LIBRARY_VERSION_PATCH 0) set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
diff --git a/include/avif/avif.h b/include/avif/avif.h index 84169ee..041d062 100644 --- a/include/avif/avif.h +++ b/include/avif/avif.h
@@ -16,7 +16,7 @@ #define AVIF_VERSION_MAJOR 0 #define AVIF_VERSION_MINOR 8 -#define AVIF_VERSION_PATCH 1 +#define AVIF_VERSION_PATCH 2 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH typedef int avifBool;