Skip to content

Commit 6261e08

Browse files
committed
Prepare release 1.3.0
1 parent 0ce1812 commit 6261e08

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
# CHANGELOG
22

3-
### NEXT (YYYY-MM-DD)
4-
3+
### 1.3.0 (2022-03-15)
4+
* Minimum PHP supported version is now 5.5 (#820, @PowerKiKi)
5+
* Support AVIF, HEIC, and JXL in Imagick driver (#759, #765, @ausi)
6+
* Support AVIF in GD driver (#791, @mlocati)
7+
* Make the $filter parameter of the resize method invariant (#776, @mlocati)
8+
* Ability to specify the alpha-blending of the GD drawer (#790, @mlocati)
9+
* Add support for SINCFAST filter in Imagick driver (#823, @mlocati)
10+
* Fix applyMask() for GD driver (#708, @ninze)
11+
* Fix PHP 8.1 compatibility (#768, #791, @ausi, @mlocati)
12+
* Fix error handling in grayscale() for Gmagick driver (#757, @dmitry-kulikov)
13+
* Fix convolve() for Imagick driver (#775, @mlocati)
14+
* Fix array retuned by histogram() method of GD and Imagick drivers (#797, @mlocati)
15+
* Fix handling alpha channel in Imagick (#775, #798, @mlocati)
16+
* New Driver\Info classes to inspect installed drivers (#802, #805, #806, @mlocati)
17+
* Fix wrong load logic in Imagick (#807, @mlocati)
518

619
### 1.2.4 (2020-11-03)
720
* Fix PHP 8.0 compatibility, except gmagick - see https://bugs.php.net/bug.php?id=80106 (#740, @ausi)

src/Image/ImagineInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
interface ImagineInterface extends ClassFactoryAwareInterface
2222
{
23-
const VERSION = '1.2.5-dev';
23+
const VERSION = '1.3.0';
2424

2525
/**
2626
* Creates a new empty image with an optional background color.

0 commit comments

Comments
 (0)