From 4a15d4163d68697032e9dbe245ba60db55927573 Mon Sep 17 00:00:00 2001 From: Alexander Piskun Date: Sun, 22 Jan 2023 01:03:34 +0300 Subject: [PATCH] v0.9.3 [publish] --- CHANGELOG.md | 10 ++++++++++ pillow_heif/_version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01058ccf..38f5c696 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ _# Changelog All notable changes to this project will be documented in this file. +## [0.9.3 - 2023-01-22] + +### Fixed + +Two bugs in XMP metadata handling that were causing exceptions. All versions were affected. +Thanks to @eeyrw for pointing out such a problem. + +- Handling XMP data with `zero` byte at the end. #69 +- Handling XMP data in `latin1` encoding. #69 + ## [0.9.2 - 2023-01-18] ### Changed diff --git a/pillow_heif/_version.py b/pillow_heif/_version.py index c0067447..09a05876 100644 --- a/pillow_heif/_version.py +++ b/pillow_heif/_version.py @@ -1,3 +1,3 @@ """ Version of pillow_heif """ -__version__ = "0.9.2" +__version__ = "0.9.3"