From 1f7753fa06f8b319e3c3e6cf1672bb1d769780e8 Mon Sep 17 00:00:00 2001 From: Carine Bonnafous Date: Thu, 18 Sep 2025 16:04:34 +0200 Subject: [PATCH 1/2] Fix task dist command --- Taskfile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 37a29b00a17d2cb04dd6fd68f717b5e8856a2fe0 Mon Sep 17 00:00:00 2001 From: Benjamin-Freoua-Alma <89775252+Benjamin-Freoua-Alma@users.noreply.github.com> Date: Thu, 18 Sep 2025 14:30:08 +0000 Subject: [PATCH 2/2] chore: update version --- CHANGELOG.md | 9 +++++++++ composer.json | 2 +- src/Client.php | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) 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/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';