diff --git a/.changeset/pre.json b/.changeset/pre.json index 293fad54..bdc16806 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -5,6 +5,7 @@ "@fingerprint/python-sdk": "8.11.0" }, "changesets": [ + "funny-shirts-brush", "late-peas-drop", "plenty-clouds-tie" ] diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bc0cdc1..33deb9ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 4ee36cf0..0c5cde10 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/fingerprint_server_sdk/__init__.py b/fingerprint_server_sdk/__init__.py index e3219880..0be18d12 100644 --- a/fingerprint_server_sdk/__init__.py +++ b/fingerprint_server_sdk/__init__.py @@ -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__ = [ diff --git a/fingerprint_server_sdk/configuration.py b/fingerprint_server_sdk/configuration.py index d20572a2..45ef3e74 100644 --- a/fingerprint_server_sdk/configuration.py +++ b/fingerprint_server_sdk/configuration.py @@ -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 diff --git a/package.json b/package.json index 0dd05ef6..f6d6fb44 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/pyproject.toml b/pyproject.toml index daad198b..8ebc0c1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"}, diff --git a/setup.py b/setup.py index 1896ec76..7b5bb3eb 100644 --- a/setup.py +++ b/setup.py @@ -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 #