Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

class Client
{
const VERSION = '2.6.0';
const VERSION = '2.6.1';

const LIVE_MODE = 'live';
const TEST_MODE = 'test';
Expand Down
Loading