Skip to content

Commit 0bdd3cf

Browse files
committed
Release 1.0.0-alpha2
1 parent 8a176dd commit 0bdd3cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

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

3-
### NEXT (YYYY-MM-DD)
3+
### 1.0.0-alpha2 (2018-09-08)
44
* The `coalesce` method of `LayerInterface` instances now returns the LayerInterface itself (@mlocati)
55
**BREAKING CHANGE** if you have your own `LayerInterface` implementation, it now must return `$this`
66
* The `__toString` method has been added to `ColorInterface` since all its implementations have it (@mlocati)
@@ -11,7 +11,7 @@
1111
**BREAKING CHANGE** the paste method doesn't throw an OutOfBoundsException anymore
1212
* Fix handling of PNG compression in Imagick `save` method (@mlocati)
1313
* New drawer methods: `rectangle` and `circle` (@mlocati)
14-
**BREAKING CHANGE** if you have your own implementation of `DrawerTest` you should add these two new methods
14+
**BREAKING CHANGE** if you have your own implementation of `DrawerInterface` you should add these two new methods
1515
* The `getChannelsMaxValue` method has been added to `PaletteInterface` (@mlocati)
1616
**BREAKING CHANGE** if you have your own `PaletteInterface` implementation, it now must implement this new method
1717

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.0.0-dev';
23+
const VERSION = '1.0.0-alpha2';
2424

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

0 commit comments

Comments
 (0)