Skip to content

Commit

Permalink
updated changelog for 0.20.0 version
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
  • Loading branch information
bigcat88 committed Oct 18, 2024
1 parent 0d30d83 commit b292f17
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
All notable changes to this project will be documented in this file.

## [0.19.0 - 2024-10-16]
## [0.20.0 - 2024-10-19]

### Added

- Initial support for parsing auxiliary images. #297 Thanks to @johncf

### Changed

- libheif updated from `1.18.1` to `1.18.2` version.
- libheif updated from `1.18.1` to `1.18.2` version. #278
- Dropped `Python 3.8` support. #293

### Fixed

- More accurate error handling in the `C` module. #298 Thanks to @johncf
- Support for `Pillow` **11.0.0** #294

## [0.18.0 - 2024-07-27]

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Features:
* Support of multiple images in one file and a `PrimaryImage` attribute.
* Adding & removing `thumbnails`.
* Reading of `Depth Images`.
* (beta) Reading of `Auxiliary Images` by @johncf
* Adding HEIF support to Pillow in one line of code as a plugin.

Note: Here is a light version [pi-heif](https://pypi.org/project/pi-heif/) of this project without encoding capabilities.
Expand Down
1 change: 1 addition & 0 deletions tests/read_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,7 @@ def test_aux_image():
assert len(im.info["aux"]["urn:com:apple:photo:2020:aux:hdrgainmap"]) == 1
aux_id = im.info["aux"]["urn:com:apple:photo:2020:aux:hdrgainmap"][0]
aux_image = im.get_aux_image(aux_id)
assert str(aux_image) == "<HeifAuxImage 2016x1512 L>"
assert isinstance(aux_image, pillow_heif.HeifAuxImage)
aux_pil = aux_image.to_pillow()
assert aux_pil.size == (2016, 1512)
Expand Down

0 comments on commit b292f17

Please sign in to comment.