Skip to content

Commit 82ba2e9

Browse files
committed
v0.14.0 [publish]
Signed-off-by: Alexander Piskun <[email protected]>
1 parent a279fff commit 82ba2e9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
All notable changes to this project will be documented in this file.
22

3-
## [0.14.0 - 2023-12-0x]
3+
## [0.14.0 - 2023-12-02]
44

55
### Added
66

@@ -11,16 +11,18 @@ All notable changes to this project will be documented in this file.
1111

1212
### Changed
1313

14+
- Increased the minimum required libheif version to `1.14.1`.
15+
- Linux: When building from source, `libheif` and other libraries are no longer try built automatically. #158
1416
- Libheif updated from `1.16.2` to `1.17.5` version. #166 #175
1517
- `NCLX` color profile - was reworked, updated docs, see PR for more info. #171
1618
- Minimum supported Pillow version raised to `9.2.0`.
17-
- Linux: When building from source, `libheif` and other libraries are no longer try built automatically. #158
1819
- Pi-Heif: As last libheif version requires minimum `cmake>=3.16.3` dropped Debian `10 armv7` wheels. #160
1920
- libde265 updated from `1.0.12` to `1.0.14`. [changelog](https://github.com/strukturag/libde265/releases/tag/v1.0.13)
2021

2122
### Fixed
2223

2324
- Support of libheif `1.17.x`. #156
25+
- Windows : Build from source with MinGW Python. #178
2426

2527
## [0.13.1 - 2023-10-15]
2628

pillow_heif/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version of pillow_heif/pi_heif."""
22

3-
__version__ = "0.14.0.dev0"
3+
__version__ = "0.14.0"

tests/write_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ def test_nclx_profile_write():
549549
nclx_out = Image.open(buf).info["nclx_profile"]
550550
for k in nclx_profile:
551551
assert nclx_profile[k] == nclx_out[k]
552-
# here we set the output color profile, even if the image has one, it will be overridden.
552+
# here we set the "output" color profile, even if the image has one, it will be overridden.
553553
nclx_profile = {
554554
"color_primaries": 1,
555555
"transfer_characteristics": 1,

0 commit comments

Comments
 (0)