Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion phrasetms_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion phrasetms_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down