diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c61958b..9467756b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## v2.6.1 - 2025-09-18 + +### Changes + +#### Contributors + +@Benjamin-Freoua-Alma and [github-actions[bot]](https://github.com/apps/github-actions) + ## v2.6.0 - 2025-09-18 ### Changes @@ -234,6 +242,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/Taskfile.yml b/Taskfile.yml index 9e9c0678..3e038276 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -114,7 +114,7 @@ tasks: dist: desc: Build zip dist package using Docker deps: - - php-compatibility:build + - 8.3:docker:build cmds: - docker compose run --rm php ./scripts/build.sh diff --git a/composer.json b/composer.json index 80a07f91..4b2d6531 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.6.0", + "version": "2.6.1", "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 d381eb1e..e26b6722 100644 --- a/src/Client.php +++ b/src/Client.php @@ -30,7 +30,7 @@ class Client { - const VERSION = '2.6.0'; + const VERSION = '2.6.1'; const LIVE_MODE = 'live'; const TEST_MODE = 'test';