diff --git a/CHANGELOG.md b/CHANGELOG.md index ef8c877..9ed0b1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # CHANGELOG +## v2.4.0 - 2024-12-09 + +### Changes + +### 🚀 New Features + +- New endpoint add order status by payment route (#155) + +#### Contributors + +@Francois-Gomis, @alma-renovate-bot, @alma-renovate-bot[bot], @github-actions and @remi-zuffinetti + ## v2.3.1 - 2024-11-14 ### Changes @@ -192,6 +204,7 @@ + ``` * Add fields and docs to the Payment entity * Add a Refund entity and extract refunds data within the Payment entity constructor diff --git a/composer.json b/composer.json index 2be1d8b..e60af78 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.3.1", + "version": "2.4.0", "type": "library", "require": { "php": "^5.6 || ~7.0 || ~7.1 || ~7.2 || ~7.3 || ~7.4 || ~8.0 || ~8.1 || ~8.2 || ~8.3", diff --git a/src/Client.php b/src/Client.php index 41d13d7..10f71ec 100644 --- a/src/Client.php +++ b/src/Client.php @@ -30,7 +30,7 @@ class Client { - const VERSION = '2.3.1'; + const VERSION = '2.4.0'; const LIVE_MODE = 'live'; const TEST_MODE = 'test';