diff --git a/phrasetms_client/__init__.py b/phrasetms_client/__init__.py index e9aba02..9d12c3c 100644 --- a/phrasetms_client/__init__.py +++ b/phrasetms_client/__init__.py @@ -13,8 +13,7 @@ Do not edit the class manually. """ - -__version__ = "0.3.13" +__version__ = "0.3.14" # 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 647a727..48420e2 100644 --- a/phrasetms_client/configuration.py +++ b/phrasetms_client/configuration.py @@ -11,7 +11,6 @@ Do not edit the class manually. """ - import copy import logging import multiprocessing @@ -423,7 +422,7 @@ def to_debug_report(self): "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: Latest\n" - "SDK Package Version: 0.3.13".format( + "SDK Package Version: 0.3.14".format( env=sys.platform, pyversion=sys.version ) ) diff --git a/pyproject.toml b/pyproject.toml index e946f79..5cacbbc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "phrasetms_client" -version = "0.3.13" +version = "0.3.14" description = "Phrase TMS API" authors = ["Martin Chrástek"] license = "LGPL-3.0" diff --git a/setup.py b/setup.py index d2b6b91..d8a328e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,6 @@ Do not edit the class manually. """ - from setuptools import setup, find_packages # noqa: H301 from pathlib import Path @@ -25,7 +24,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "phrasetms-client" -VERSION = "0.3.13" +VERSION = "0.3.14" PYTHON_REQUIRES = ">=3.7" REQUIRES = ["urllib3 >= 1.25.3", "python-dateutil", "pydantic >= 1.10.5, < 2", "aenum"]