diff --git a/CHANGELOG.md b/CHANGELOG.md index 68e65606..15885ccc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +v2.0.4 +------- +* Fix json_decode in getSubscriptionDetails +* Add subscription pending_cancellation status + v2.0.3 ------- * Added order_id in subscription model diff --git a/composer.json b/composer.json index 115842e0..f05d3516 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "alma/alma-php-client", "description": "PHP API client for the Alma payments API", - "version": "2.0.3", + "version": "2.0.4", "type": "library", "require": { "php": "^5.6 || ~7.0 || ~7.1 || ~7.2 || ~7.3 || ~7.4 || ~8.0 || ~8.1 || ~8.2", diff --git a/src/Client.php b/src/Client.php index 51a65f81..44f25d6a 100644 --- a/src/Client.php +++ b/src/Client.php @@ -30,7 +30,7 @@ class Client { - const VERSION = '2.0.3'; + const VERSION = '2.0.4'; const LIVE_MODE = 'live'; const TEST_MODE = 'test';