From 8fe5378a0bd3d1480ab92e9b3ae9d998c37b2bb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Chr=C3=A1stek?= Date: Mon, 5 May 2025 17:25:46 +0200 Subject: [PATCH] Version 0.3.11 --- phrasetms_client/__init__.py | 2 +- phrasetms_client/configuration.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/phrasetms_client/__init__.py b/phrasetms_client/__init__.py index 462d998..81c5deb 100644 --- a/phrasetms_client/__init__.py +++ b/phrasetms_client/__init__.py @@ -14,7 +14,7 @@ """ -__version__ = "0.3.10" +__version__ = "0.3.11" # import apis into sdk package from phrasetms_client.api.additional_workflow_step_api import AdditionalWorkflowStepApi diff --git a/phrasetms_client/configuration.py b/phrasetms_client/configuration.py index 1bd720e..0fa7cb1 100644 --- a/phrasetms_client/configuration.py +++ b/phrasetms_client/configuration.py @@ -423,7 +423,7 @@ def to_debug_report(self): "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: Latest\n" - "SDK Package Version: 0.3.10".format(env=sys.platform, pyversion=sys.version) + "SDK Package Version: 0.3.11".format(env=sys.platform, pyversion=sys.version) ) def get_host_settings(self): diff --git a/pyproject.toml b/pyproject.toml index 4cf2474..b5688b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "phrasetms_client" -version = "0.3.10" +version = "0.3.11" description = "Phrase TMS API" authors = ["Martin Chrástek"] license = "LGPL-3.0" diff --git a/setup.py b/setup.py index d835987..5a4a67f 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "phrasetms-client" -VERSION = "0.3.10" +VERSION = "0.3.11" PYTHON_REQUIRES = ">=3.7" REQUIRES = ["urllib3 >= 1.25.3", "python-dateutil", "pydantic >= 1.10.5, < 2", "aenum"]