Skip to content

Commit f3eab65

Browse files
chore(release): 6.0.0 [skip ci]
## [6.0.0](v5.0.0...v6.0.0) (2024-03-27) ### ⚠ BREAKING CHANGES * now only Python >= 3.8 is supported ### Features * drop support for python < 3.8 ([1e18e2c](1e18e2c))
1 parent 3076b49 commit f3eab65

File tree

8 files changed

+20
-9
lines changed

8 files changed

+20
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [6.0.0](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/compare/v5.0.0...v6.0.0) (2024-03-27)
2+
3+
4+
### ⚠ BREAKING CHANGES
5+
6+
* now only Python >= 3.8 is supported
7+
8+
### Features
9+
10+
* drop support for python < 3.8 ([1e18e2c](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/1e18e2ccafb6967229922d7783782f2c97cadb64))
11+
112
## [5.0.0](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/compare/v4.0.0...v5.0.0) (2024-03-20)
213

314

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<a href="https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/actions/workflows/release.yml"><img src="https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/actions/workflows/release.yml/badge.svg" alt="CI badge" /></a>
1414
<a href="https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/actions/workflows/test.yml"><img src="https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/actions/workflows/test.yml/badge.svg" alt="CI badge" /></a>
1515
<a href="https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/actions/workflows/functional_tests.yml"><img src="https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/actions/workflows/functional_tests.yml/badge.svg" alt="CI badge" /></a>
16-
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/:license-mit-blue.svg?style=flat" alt="MIT License"/></a>
16+
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/:license-mit-blue.svg?style=flat"/></a>
1717
<a href="https://discord.gg/39EpE2neBg"><img src="https://img.shields.io/discord/852099967190433792?style=logo&label=Discord&logo=Discord&logoColor=white" alt="Discord server"></a>
1818
</p>
1919

@@ -26,7 +26,7 @@ The Fingerprint Server Python SDK is an easy way to interact with the Fingerprin
2626
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
2727

2828
- API version: 3
29-
- Package version: 5.0.0
29+
- Package version: 6.0.0
3030
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen
3131

3232
## Requirements

fingerprint_pro_server_api_sdk/api/fingerprint_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def get_event_with_http_info(self, request_id, **kwargs): # noqa: E501
9999
path_params['request_id'] = params['request_id'] # noqa: E501
100100

101101
query_params = []
102-
query_params.append(('ii', 'fingerprint-pro-server-python-sdk/5.0.0'))
102+
query_params.append(('ii', 'fingerprint-pro-server-python-sdk/6.0.0'))
103103

104104
header_params = {}
105105

@@ -214,7 +214,7 @@ def get_visits_with_http_info(self, visitor_id, **kwargs): # noqa: E501
214214
path_params['visitor_id'] = params['visitor_id'] # noqa: E501
215215

216216
query_params = []
217-
query_params.append(('ii', 'fingerprint-pro-server-python-sdk/5.0.0'))
217+
query_params.append(('ii', 'fingerprint-pro-server-python-sdk/6.0.0'))
218218
if 'request_id' in params:
219219
query_params.append(('request_id', params['request_id'])) # noqa: E501
220220
if 'linked_id' in params:

fingerprint_pro_server_api_sdk/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7979
self.default_headers[header_name] = header_value
8080
self.cookie = cookie
8181
# Set default User-Agent.
82-
self.user_agent = 'Swagger-Codegen/5.0.0/python'
82+
self.user_agent = 'Swagger-Codegen/6.0.0/python'
8383

8484
def __del__(self):
8585
self.pool.close()

fingerprint_pro_server_api_sdk/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,5 +263,5 @@ def to_debug_report(self):
263263
"OS: {env}\n"\
264264
"Python Version: {pyversion}\n"\
265265
"Version of the API: 3\n"\
266-
"SDK Package Version: 5.0.0".\
266+
"SDK Package Version: 6.0.0".\
267267
format(env=sys.platform, pyversion=sys.version)

generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
VERSION='5.0.0'
3+
VERSION='6.0.0'
44

55
while getopts "v:" arg; do
66
case $arg in

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
'Programming Language :: Python :: 3.8',
6161
'Programming Language :: Python :: 3.9',
6262
'Programming Language :: Python :: 3.10',
63-
'Programming Language :: Python :: 3.11',
63+
'Programming Language :: Python :: 3.12',
6464
'Programming Language :: Python :: 3.12',
6565
'Programming Language :: Python :: Implementation :: PyPy',
6666
'Topic :: Software Development :: Libraries :: Python Modules',

test/test_fingerprint_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
API_KEY = 'private_key'
2626

27-
VERSION = '5.0.0'
27+
VERSION = '6.0.0'
2828

2929

3030
class MockPoolManager(object):

0 commit comments

Comments
 (0)