From a4310c7636eb16760d1b3aa9867f716057973b8c Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 14 Sep 2022 11:31:32 +0000 Subject: [PATCH] 1.2.0 chore(release): 1.2.0 [skip ci] --- CHANGELOG.md | 7 +++++++ README.md | 2 +- fingerprint_pro_server_api_sdk/api/fingerprint_api.py | 4 ++-- fingerprint_pro_server_api_sdk/api_client.py | 2 +- fingerprint_pro_server_api_sdk/configuration.py | 2 +- generate.sh | 2 +- setup.py | 2 +- test/test_fingerprint_api.py | 2 +- 8 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 273fdd25..18ad42f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v1.2.0 (2022-09-14) +### Feature +* Introduce /event/{request_id} endpoint ([`3e587d0`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/3e587d08b6b02532667c382daf27f05a80a98a4b)) + +### Documentation +* **README:** Add examples to readme ([`13256fd`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/13256fd34a1275c9c3a9ca8c01cd5beb1fafa668)) + ## v1.1.0 (2022-08-25) ### Feature * Support nullable types ([`7ac3b07`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/7ac3b07a9622ddeb9e332a793f02f8112bcd3b7f)) diff --git a/README.md b/README.md index 92972cd8..f40842f2 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Fingerprint Pro Server API provides a way for validating visitors’ data issued This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 3 -- Package version: 1.1.0 +- Package version: 1.2.0 - Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen ## Requirements. diff --git a/fingerprint_pro_server_api_sdk/api/fingerprint_api.py b/fingerprint_pro_server_api_sdk/api/fingerprint_api.py index 1410b442..ef8e0dff 100644 --- a/fingerprint_pro_server_api_sdk/api/fingerprint_api.py +++ b/fingerprint_pro_server_api_sdk/api/fingerprint_api.py @@ -97,7 +97,7 @@ def get_event_with_http_info(self, request_id, **kwargs): # noqa: E501 path_params['request_id'] = params['request_id'] # noqa: E501 query_params = [] - query_params.append(('ii', 'fingerprint-pro-server-python-sdk/1.1.0')) + query_params.append(('ii', 'fingerprint-pro-server-python-sdk/1.2.0')) header_params = {} @@ -201,7 +201,7 @@ def get_visits_with_http_info(self, visitor_id, **kwargs): # noqa: E501 path_params['visitor_id'] = params['visitor_id'] # noqa: E501 query_params = [] - query_params.append(('ii', 'fingerprint-pro-server-python-sdk/1.1.0')) + query_params.append(('ii', 'fingerprint-pro-server-python-sdk/1.2.0')) if 'request_id' in params: query_params.append(('request_id', params['request_id'])) # noqa: E501 if 'linked_id' in params: diff --git a/fingerprint_pro_server_api_sdk/api_client.py b/fingerprint_pro_server_api_sdk/api_client.py index 24d089ca..0dc9f3a4 100644 --- a/fingerprint_pro_server_api_sdk/api_client.py +++ b/fingerprint_pro_server_api_sdk/api_client.py @@ -72,7 +72,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/1.1.0/python' + self.user_agent = 'Swagger-Codegen/1.2.0/python' def __del__(self): self.pool.close() diff --git a/fingerprint_pro_server_api_sdk/configuration.py b/fingerprint_pro_server_api_sdk/configuration.py index cfbb7f2c..3ded9548 100644 --- a/fingerprint_pro_server_api_sdk/configuration.py +++ b/fingerprint_pro_server_api_sdk/configuration.py @@ -263,5 +263,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 3\n"\ - "SDK Package Version: 1.1.0".\ + "SDK Package Version: 1.2.0".\ format(env=sys.platform, pyversion=sys.version) \ No newline at end of file diff --git a/generate.sh b/generate.sh index 5a279db0..851b8221 100755 --- a/generate.sh +++ b/generate.sh @@ -1,6 +1,6 @@ #!/bin/bash -VERSION='1.1.0' +VERSION='1.2.0' while getopts "v:" arg; do case $arg in diff --git a/setup.py b/setup.py index bfd46475..996ae1f4 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "fingerprint-pro-server-api-sdk" -VERSION = "1.1.0" +VERSION = "1.2.0" # To install the library, run the following # # python setup.py install diff --git a/test/test_fingerprint_api.py b/test/test_fingerprint_api.py index a32b6c02..e3d2d320 100644 --- a/test/test_fingerprint_api.py +++ b/test/test_fingerprint_api.py @@ -24,7 +24,7 @@ API_KEY = 'private_key' -VERSION = '1.1.0' +VERSION = '1.2.0' class MockPoolManager(object): def __init__(self, tc):