diff --git a/CHANGELOG.md b/CHANGELOG.md index 69abbeea..114e71ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## 8.6.2 (2026-08-13) + +### Fixes + +- Fix typo in mandate_import_entry status description + ## 8.6.1 (2026-08-13) ### Fixes diff --git a/package-lock.json b/package-lock.json index ceb6c65e..6622d513 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "gocardless-nodejs", - "version": "8.6.1", + "version": "8.6.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "gocardless-nodejs", - "version": "8.6.1", + "version": "8.6.2", "license": "MIT", "dependencies": { "got": "^11.8.6", diff --git a/package.json b/package.json index 383d42b3..e27e1845 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gocardless-nodejs", - "version": "8.6.1", + "version": "8.6.2", "description": "Node.js client for the GoCardless API - a powerful, simple solution for the collection of recurring bank-to-bank payments", "author": "GoCardless Ltd ", "repository": { diff --git a/src/constants.ts b/src/constants.ts index 7cc88d08..49a5993b 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -3,7 +3,7 @@ enum Environments { Sandbox = 'SANDBOX', } -const CLIENT_VERSION = '8.6.1'; +const CLIENT_VERSION = '8.6.2'; const API_VERSION = '2015-07-06'; export { Environments, CLIENT_VERSION, API_VERSION };