diff --git a/CHANGELOG.md b/CHANGELOG.md index 436afd62..ee569483 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## 8.0.6 (2026-08-13) + +### Fixes + +- Fix typo in mandate_import_entry status description + ## 8.0.5 (2026-08-13) ### Fixes diff --git a/composer.json b/composer.json index 789e0fed..f34a9aec 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "gocardless/gocardless-pro", "description": "GoCardless PHP Client Library", - "version": "8.0.5", + "version": "8.0.6", "keywords": [ "gocardless", "direct debit", diff --git a/composer.lock b/composer.lock index 1ecd3c64..16c01376 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7b168c947c31cf9900b848e61a400dff", + "content-hash": "660ecaee5a1aafb4b988819b63bf4b71", "packages": [ { "name": "guzzlehttp/guzzle", diff --git a/lib/Client.php b/lib/Client.php index cb603e35..ebf49051 100644 --- a/lib/Client.php +++ b/lib/Client.php @@ -56,7 +56,7 @@ public function __construct($config) 'Content-Type' => 'application/json', 'Authorization' => "Bearer " . $access_token, 'GoCardless-Client-Library' => 'gocardless-pro-php', - 'GoCardless-Client-Version' => '8.0.5', + 'GoCardless-Client-Version' => '8.0.6', 'User-Agent' => $this->getUserAgent() ), 'http_errors' => false, @@ -764,7 +764,7 @@ private function getUserAgent() { $curlinfo = curl_version(); $uagent = array(); - $uagent[] = 'gocardless-pro-php/8.0.5'; + $uagent[] = 'gocardless-pro-php/8.0.6'; $uagent[] = 'schema-version/2015-07-06'; $uagent[] = 'GuzzleHttp/' . \GuzzleHttp\Client::MAJOR_VERSION; $uagent[] = 'php/' . phpversion();