Skip to content

Commit bd94e91

Browse files
actions-usergithub-actions
authored andcommitted
0.0.4
chore(release): 0.0.4 [skip ci]
1 parent 31bf4bd commit bd94e91

File tree

8 files changed

+16
-7
lines changed

8 files changed

+16
-7
lines changed

CHANGELOG.md

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

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

5+
## v0.0.4 (2022-08-19)
6+
### Fix
7+
* Add correct links to documentation from PyPI ([`af8264f`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/af8264f6e9cabc7aa75c1e2b5269045884373600))
8+
9+
### Documentation
10+
* Improve setup instruction ([`c95f794`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/c95f79468050b332313f1bfcf803b249624bf493))
11+
* Remove extra imports, use print instead of pprint in example ([`9cccd53`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/9cccd53a7fcf05d60cdab484a2aaf43c5a83038d))
12+
* Add keywords ([`93fc3a2`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/93fc3a2c3c993905a6133776e0dca531ff26e683))
13+
514
## v0.0.3 (2022-08-17)
615
### Fix
716
* Sync version in generated code ([`0181453`](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/0181453ea61341188c04bcad4bb81d8769bf5664))

README.md

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

3838
- API version: 3
39-
- Package version: 0.0.3
39+
- Package version: 0.0.4
4040
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen
4141

4242
## 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/0.0.3'))
108+
query_params.append(('ii', 'fingerprint-pro-server-python-sdk/0.0.4'))
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/0.0.3/python'
75+
self.user_agent = 'Swagger-Codegen/0.0.4/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: 0.0.3".\
266+
"SDK Package Version: 0.0.4".\
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='0.0.3'
3+
VERSION='0.0.4'
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 = "0.0.3"
19+
VERSION = "0.0.4"
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 = '0.0.3'
27+
VERSION = '0.0.4'
2828

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

0 commit comments

Comments
 (0)