From 543b67a96e132a8374adb828895db2ddd48d00ba Mon Sep 17 00:00:00 2001 From: Francois-Gomis <97046219+Francois-Gomis@users.noreply.github.com> Date: Thu, 14 Nov 2024 16:07:17 +0000 Subject: [PATCH 1/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 e884bb0..dced438 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## v2.3.1 - 2024-11-14 + +### Changes + +#### Contributors + +@Benjamin-Freoua-Alma and @github-actions + ## v2.3.0 - 2024-11-04 ### Changes @@ -181,6 +189,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 24fe5ee..2be1d8b 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.0", + "version": "2.3.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 010c328..68c95d4 100644 --- a/src/Client.php +++ b/src/Client.php @@ -30,7 +30,7 @@ class Client { - const VERSION = '2.3.0'; + const VERSION = '2.3.1'; const LIVE_MODE = 'live'; const TEST_MODE = 'test'; From ce7b2cf8225853ed2fd27d936d71a66694bc8aab Mon Sep 17 00:00:00 2001 From: Francois-Gomis Date: Thu, 14 Nov 2024 17:10:37 +0100 Subject: [PATCH 2/2] chore: change release changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dced438..ef8c877 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ### Changes +- Change send configuration url endpoint (#150) + #### Contributors @Benjamin-Freoua-Alma and @github-actions