Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"@fingerprint/python-sdk": "8.11.0"
},
"changesets": [
"funny-shirts-brush",
"late-peas-drop",
"plenty-clouds-tie"
]
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Fingerprint Pro Server Python SDK

## 9.0.0-rc.1

### Patch Changes

- fix build system ([fa1da3b](https://github.com/fingerprintjs/python-sdk/commit/fa1da3b9fc8201d20964dce6f347cae5e01eb5e1))

## 9.0.0-rc.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The Fingerprint Server Python SDK is an easy way to interact with the Fingerprin
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 4
- Package version: 9.0.0-rc.0
- Package version: 9.0.0-rc.1
- Generator version: 7.19.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

Expand Down
2 changes: 1 addition & 1 deletion fingerprint_server_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Do not edit the class manually.
""" # noqa: E501

__version__ = '9.0.0-rc.0'
__version__ = '9.0.0-rc.1'

# Define package exports
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion fingerprint_server_sdk/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def to_debug_report(self) -> str:
f'OS: {sys.platform}\n'
f'Python Version: {sys.version}\n'
'Version of the API: 4\n'
'SDK Package Version: 9.0.0-rc.0'
'SDK Package Version: 9.0.0-rc.1'
)

@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fingerprint/python-sdk",
"version": "9.0.0-rc.0",
"version": "9.0.0-rc.1",
"private": true,
"devDependencies": {
"@changesets/cli": "^2.27.8",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fingerprint_server_sdk"
version = "9.0.0-rc.0"
version = "9.0.0-rc.1"
description = "Fingerprint Server API allows you to get, search, and update Events in a server environment. It can be used for data exports, decision-making, and data analysis scenarios. Server API is intended for server-side usage, it's not intended to be used from the client side, whether it's a browser or a mobile device. "
authors = [
{name = "Fingerprint Support",email = "support@fingerprint.com"},
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from setuptools import find_packages, setup

NAME = 'fingerprint-server-sdk'
VERSION = '9.0.0-rc.0'
VERSION = '9.0.0-rc.1'
PYTHON_REQUIRES = '>= 3.9'
# To install the library, run the following
#
Expand Down
Loading