diff --git a/CHANGELOG.md b/CHANGELOG.md index b8d7f3d..b038570 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -* [#15](https://github.com/DripEmail/drip-php/pull/15) - Added `\Drip\Client#create_or_update_subscribers` method (@j831) -* Make private methods protected so that people can subclass. Fixes [#16](https://github.com/DripEmail/drip-php/issues/16) * Your improvement here! +## 1.1.0 + +* [#15](https://github.com/DripEmail/drip-php/pull/15) - Added `\Drip\Client#create_or_update_subscribers` method (@j831) +* [#17](https://github.com/DripEmail/drip-php/pull/17) - Make private methods protected so that people can subclass + ## 1.0.0 - Set up composer package diff --git a/src/Client.php b/src/Client.php index 3651c05..b86af84 100644 --- a/src/Client.php +++ b/src/Client.php @@ -14,7 +14,7 @@ */ class Client { - const VERSION = '1.0.0'; + const VERSION = '1.1.0'; /** @var string */ protected $api_token = '';