diff --git a/changelog.txt b/changelog.txt index c357b88..b917fd2 100644 --- a/changelog.txt +++ b/changelog.txt @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Paylike client (PHP) +## 1.0.7 - 2020-09-2 +### Changed +- Update composer to separate dev dependencies and update php version requirement. + +## 1.0.6 - 2020-06-11 +### Added +- Add merchant lines endpoint support. + +## 1.0.5 - 2019-10-17 +### Changed +- Change Resource to Endpoint to avoid issue with reserved word. + ## 1.0.4 - 2018-12-05 ### Added - Currencies class to allow plugins to fetch exponent data directly diff --git a/composer.json b/composer.json index bd72ad7..de99ad1 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "paylike/php-api", "description": "PHP SDK to communicate with the Paylike HTTP API", - "version": "1.0.5", + "version": "1.0.7", "license": "MIT", "authors": [ { diff --git a/src/Paylike.php b/src/Paylike.php index ccd507f..c062b25 100644 --- a/src/Paylike.php +++ b/src/Paylike.php @@ -31,7 +31,7 @@ class Paylike */ private $api_key; - private $version = '1.0.6'; + private $version = '1.0.7'; /**