From 181d8201791314f7a3736f15f30cb097b59b50f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Chr=C3=A1stek?= Date: Fri, 23 May 2025 15:06:29 +0200 Subject: [PATCH] Version 0.3.13 --- 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 56e68c7..e9aba02 100644 --- a/phrasetms_client/__init__.py +++ b/phrasetms_client/__init__.py @@ -14,7 +14,7 @@ """ -__version__ = "0.3.12" +__version__ = "0.3.13" # 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 a7203f7..647a727 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.12".format( + "SDK Package Version: 0.3.13".format( env=sys.platform, pyversion=sys.version ) ) diff --git a/pyproject.toml b/pyproject.toml index 20f2d68..e946f79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "phrasetms_client" -version = "0.3.12" +version = "0.3.13" description = "Phrase TMS API" authors = ["Martin Chrástek"] license = "LGPL-3.0" diff --git a/setup.py b/setup.py index 944e4a0..d2b6b91 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "phrasetms-client" -VERSION = "0.3.12" +VERSION = "0.3.13" PYTHON_REQUIRES = ">=3.7" REQUIRES = ["urllib3 >= 1.25.3", "python-dateutil", "pydantic >= 1.10.5, < 2", "aenum"]