From 82ba2e99c5215a745a7d80df24bf5e5b04dfeb9b Mon Sep 17 00:00:00 2001 From: Alexander Piskun Date: Sat, 2 Dec 2023 16:39:57 +0300 Subject: [PATCH] v0.14.0 [publish] Signed-off-by: Alexander Piskun --- CHANGELOG.md | 6 ++++-- pillow_heif/_version.py | 2 +- tests/write_test.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 477d4e18..bc466c9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ All notable changes to this project will be documented in this file. -## [0.14.0 - 2023-12-0x] +## [0.14.0 - 2023-12-02] ### Added @@ -11,16 +11,18 @@ All notable changes to this project will be documented in this file. ### Changed +- Increased the minimum required libheif version to `1.14.1`. +- Linux: When building from source, `libheif` and other libraries are no longer try built automatically. #158 - Libheif updated from `1.16.2` to `1.17.5` version. #166 #175 - `NCLX` color profile - was reworked, updated docs, see PR for more info. #171 - Minimum supported Pillow version raised to `9.2.0`. -- Linux: When building from source, `libheif` and other libraries are no longer try built automatically. #158 - Pi-Heif: As last libheif version requires minimum `cmake>=3.16.3` dropped Debian `10 armv7` wheels. #160 - libde265 updated from `1.0.12` to `1.0.14`. [changelog](https://github.com/strukturag/libde265/releases/tag/v1.0.13) ### Fixed - Support of libheif `1.17.x`. #156 +- Windows : Build from source with MinGW Python. #178 ## [0.13.1 - 2023-10-15] diff --git a/pillow_heif/_version.py b/pillow_heif/_version.py index 21d4f1e5..6e117bab 100644 --- a/pillow_heif/_version.py +++ b/pillow_heif/_version.py @@ -1,3 +1,3 @@ """Version of pillow_heif/pi_heif.""" -__version__ = "0.14.0.dev0" +__version__ = "0.14.0" diff --git a/tests/write_test.py b/tests/write_test.py index 4dc47c64..38724afd 100644 --- a/tests/write_test.py +++ b/tests/write_test.py @@ -549,7 +549,7 @@ def test_nclx_profile_write(): nclx_out = Image.open(buf).info["nclx_profile"] for k in nclx_profile: assert nclx_profile[k] == nclx_out[k] - # here we set the “output” color profile, even if the image has one, it will be overridden. + # here we set the "output" color profile, even if the image has one, it will be overridden. nclx_profile = { "color_primaries": 1, "transfer_characteristics": 1,