Skip to content

Commit

Permalink
v0.14.0 [publish]
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Piskun <[email protected]>
  • Loading branch information
bigcat88 committed Dec 2, 2023
1 parent a279fff commit 82ba2e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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]

Expand Down
2 changes: 1 addition & 1 deletion pillow_heif/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version of pillow_heif/pi_heif."""

__version__ = "0.14.0.dev0"
__version__ = "0.14.0"
2 changes: 1 addition & 1 deletion tests/write_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 82ba2e9

Please sign in to comment.