diff --git a/CHANGELOG.md b/CHANGELOG.md index 009008ea..60a8553a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog +## 3.7.2 (2026-09-04) + +### Fixes + +#### Define common titles for common types + +The intention is to make it possible to define common types in generated code. +Instead of ~37 different currency enum types which are all equivalent, we could have one. + ## 3.7.1 (2026-09-02) ### Fixes diff --git a/gocardless_pro/__init__.py b/gocardless_pro/__init__.py index 0672cb4e..42fa0627 100644 --- a/gocardless_pro/__init__.py +++ b/gocardless_pro/__init__.py @@ -2,5 +2,5 @@ from .client import Client -__version__ = '3.7.1' +__version__ = '3.7.2' diff --git a/gocardless_pro/api_client.py b/gocardless_pro/api_client.py index 4bf41df5..298ce838 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.7.1', + 'GoCardless-Client-Version': '3.7.2', '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.7.1', + 'gocardless-pro-python/3.7.2', '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 02e488f5..81020b8e 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = 'gocardless_pro', - version = '3.7.1', + version = '3.7.2', packages = find_packages(exclude=['tests']), install_requires = ['requests>=2.34.2'], python_requires = '>=3.6',