From 6261e08598f9ba3d1b79a134a0e33471b1e6045a Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Tue, 15 Mar 2022 11:41:05 +0100 Subject: [PATCH] Prepare release 1.3.0 --- CHANGELOG.md | 17 +++++++++++++++-- src/Image/ImagineInterface.php | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cb41d34f..136dc6530 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,20 @@ # CHANGELOG -### NEXT (YYYY-MM-DD) - +### 1.3.0 (2022-03-15) +* Minimum PHP supported version is now 5.5 (#820, @PowerKiKi) +* Support AVIF, HEIC, and JXL in Imagick driver (#759, #765, @ausi) +* Support AVIF in GD driver (#791, @mlocati) +* Make the $filter parameter of the resize method invariant (#776, @mlocati) +* Ability to specify the alpha-blending of the GD drawer (#790, @mlocati) +* Add support for SINCFAST filter in Imagick driver (#823, @mlocati) +* Fix applyMask() for GD driver (#708, @ninze) +* Fix PHP 8.1 compatibility (#768, #791, @ausi, @mlocati) +* Fix error handling in grayscale() for Gmagick driver (#757, @dmitry-kulikov) +* Fix convolve() for Imagick driver (#775, @mlocati) +* Fix array retuned by histogram() method of GD and Imagick drivers (#797, @mlocati) +* Fix handling alpha channel in Imagick (#775, #798, @mlocati) +* New Driver\Info classes to inspect installed drivers (#802, #805, #806, @mlocati) +* Fix wrong load logic in Imagick (#807, @mlocati) ### 1.2.4 (2020-11-03) * Fix PHP 8.0 compatibility, except gmagick - see https://bugs.php.net/bug.php?id=80106 (#740, @ausi) diff --git a/src/Image/ImagineInterface.php b/src/Image/ImagineInterface.php index 9f8d8cb2b..1e6cfc10d 100644 --- a/src/Image/ImagineInterface.php +++ b/src/Image/ImagineInterface.php @@ -20,7 +20,7 @@ */ interface ImagineInterface extends ClassFactoryAwareInterface { - const VERSION = '1.2.5-dev'; + const VERSION = '1.3.0'; /** * Creates a new empty image with an optional background color.