diff --git a/CHANGELOG.md b/CHANGELOG.md index ac470dca..7f59a94c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog +## 3.6.3 (2026-08-13) + +### Fixes + +- Fix typo in mandate_import_entry status description + +## 3.6.2 (2026-08-13) + +### Fixes + +- Fix typo in mandate_import_entry status description + ## 3.6.1 (2026-08-13) ### Fixes diff --git a/gocardless_pro/__init__.py b/gocardless_pro/__init__.py index 26e370dd..0c108b40 100644 --- a/gocardless_pro/__init__.py +++ b/gocardless_pro/__init__.py @@ -2,5 +2,5 @@ from .client import Client -__version__ = '3.6.1' +__version__ = '3.6.3' diff --git a/gocardless_pro/api_client.py b/gocardless_pro/api_client.py index 2e6f474d..20fd64fb 100644 --- a/gocardless_pro/api_client.py +++ b/gocardless_pro/api_client.py @@ -172,7 +172,7 @@ def _default_headers(self): 'Authorization': 'Bearer {0}'.format(self.access_token), 'Content-Type': 'application/json', 'GoCardless-Client-Library': 'gocardless-pro-python', - 'GoCardless-Client-Version': '3.6.1', + 'GoCardless-Client-Version': '3.6.3', 'User-Agent': self._user_agent(), 'GoCardless-Version': '2015-07-06', } @@ -181,7 +181,7 @@ def _user_agent(self): python_version = '.'.join(platform.python_version_tuple()[0:2]) vm_version = '{}.{}.{}-{}{}'.format(*sys.version_info) return ' '.join([ - 'gocardless-pro-python/3.6.1', + 'gocardless-pro-python/3.6.3', 'python/{0}'.format(python_version), '{0}/{1}'.format(platform.python_implementation(), vm_version), '{0}/{1}'.format(platform.system(), platform.release()), diff --git a/setup.py b/setup.py index 3d572a2f..b952453f 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = 'gocardless_pro', - version = '3.6.1', + version = '3.6.3', packages = find_packages(exclude=['tests']), install_requires = ['requests>=2.34.2'], python_requires = '>=3.6',