Skip to content

Commit 62421d3

Browse files
actions-usergithub-actions
authored andcommitted
1.1.0
chore(release): 1.1.0 [skip ci]
1 parent 97ef697 commit 62421d3

File tree

8 files changed

+14
-7
lines changed

8 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
<!--next-version-placeholder-->
44

5+
## v1.1.0 (2022-08-25)
6+
### Feature
7+
* Support nullable types ([`7ac3b07`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/7ac3b07a9622ddeb9e332a793f02f8112bcd3b7f))
8+
9+
### Fix
10+
* Regenerate schema with nullable types support ([`9c05f3e`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/9c05f3e9492c3a1374ef5a950b95420be9600af5))
11+
512
## v1.0.0 (2022-08-24)
613
### Feature
714
* Stable release ([`993a34a`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/993a34af407279b75b98d1b72e439e799c072cae))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Fingerprint Pro Server API provides a way for validating visitors’ data issued
3434
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
3535

3636
- API version: 3
37-
- Package version: 1.0.0
37+
- Package version: 1.1.0
3838
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen
3939

4040
## Requirements.

fingerprint_pro_server_api_sdk/api/fingerprint_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def get_visits_with_http_info(self, visitor_id, **kwargs): # noqa: E501
105105
path_params['visitor_id'] = params['visitor_id'] # noqa: E501
106106

107107
query_params = []
108-
query_params.append(('ii', 'fingerprint-pro-server-python-sdk/1.0.0'))
108+
query_params.append(('ii', 'fingerprint-pro-server-python-sdk/1.1.0'))
109109
if 'request_id' in params:
110110
query_params.append(('request_id', params['request_id'])) # noqa: E501
111111
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
@@ -72,7 +72,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7272
self.default_headers[header_name] = header_value
7373
self.cookie = cookie
7474
# Set default User-Agent.
75-
self.user_agent = 'Swagger-Codegen/1.0.0/python'
75+
self.user_agent = 'Swagger-Codegen/1.1.0/python'
7676

7777
def __del__(self):
7878
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: 1.0.0".\
266+
"SDK Package Version: 1.1.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='1.0.0'
3+
VERSION='1.1.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
@@ -16,7 +16,7 @@
1616
from setuptools import setup, find_packages # noqa: H301
1717

1818
NAME = "fingerprint-pro-server-api-sdk"
19-
VERSION = "1.0.0"
19+
VERSION = "1.1.0"
2020
# To install the library, run the following
2121
#
2222
# python setup.py install

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 = '1.0.0'
27+
VERSION = '1.1.0'
2828

2929
class MockPoolManager(object):
3030
def __init__(self, tc):

0 commit comments

Comments
 (0)