Skip to content

Commit

Permalink
Release 1.0.0-alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati committed Sep 8, 2018
1 parent 8a176dd commit 0bdd3cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

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

Expand Down
2 changes: 1 addition & 1 deletion src/Image/ImagineInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
interface ImagineInterface extends ClassFactoryAwareInterface
{
const VERSION = '1.0.0-dev';
const VERSION = '1.0.0-alpha2';

/**
* Creates a new empty image with an optional background color.
Expand Down

0 comments on commit 0bdd3cf

Please sign in to comment.