diff --git a/.changeset/neat-horses-swim.md b/.changeset/neat-horses-swim.md deleted file mode 100644 index 11cb4048..00000000 --- a/.changeset/neat-horses-swim.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@fingerprint/python-sdk": patch ---- - -Fix incorrect SDK name in the integration info parameter diff --git a/.changeset/rotten-turtles-give.md b/.changeset/rotten-turtles-give.md deleted file mode 100644 index fa56cab7..00000000 --- a/.changeset/rotten-turtles-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@fingerprint/python-sdk": patch ---- - -Bump minimum required `cryptography` version from `41.0.0` to `46.0.5`. diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bb0efca..e27aae09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Fingerprint Pro Server Python SDK +## 9.0.1 + +### Patch Changes + +- Fix incorrect SDK name in the integration info parameter ([43e083e](https://github.com/fingerprintjs/python-sdk/commit/43e083ee74b4533cadfed206502a490df82c2803)) +- Bump minimum required `cryptography` version from `41.0.0` to `46.0.5`. ([91288d5](https://github.com/fingerprintjs/python-sdk/commit/91288d573e31aa54e51ae83ba25e5dc6e8cf22a7)) + ## 9.0.0 ### Major Changes diff --git a/README.md b/README.md index fcd3c2dd..559bf225 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 +- Package version: 9.0.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 f682d435..26e073e7 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' +__version__ = '9.0.1' # Define package exports __all__ = [ diff --git a/fingerprint_server_sdk/configuration.py b/fingerprint_server_sdk/configuration.py index 010e3dba..896f1e80 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' + 'SDK Package Version: 9.0.1' ) @staticmethod diff --git a/package.json b/package.json index d6f5290c..883e47f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fingerprint/python-sdk", - "version": "9.0.0", + "version": "9.0.1", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/pyproject.toml b/pyproject.toml index 4a989aed..91f0c4de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fingerprint_server_sdk" -version = "9.0.0" +version = "9.0.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 f314bb27..4adc0130 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' +VERSION = '9.0.1' PYTHON_REQUIRES = '>= 3.9' # To install the library, run the following #