Skip to content

Commit 4ebf6c1

Browse files
authored
Version 0.3.12 (#23)
1 parent 9aa507d commit 4ebf6c1

File tree

4 files changed

+22
-19
lines changed

4 files changed

+22
-19
lines changed

phrasetms_client/__init__.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
# flake8: noqa
44

55
"""
6-
Phrase TMS API
6+
Phrase TMS API
77
8-
Welcome to Phrase's TMS API documentation. Please visit our [help center](https://support.phrase.com/hc/en-us/sections/5709662083612) for more information about the APIs. If you have any questions, please contact [Support](https://support.phrase.com/hc/requests/new). Please, include the `User-Agent` header with the name of your application or project. It might be a good idea to include some sort of contact information as well, so that we can get in touch if necessary. Examples of excellent `User-Agent` headers: > User-Agent: Example mobile app ([email protected]) <br/> User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501
8+
Welcome to Phrase's TMS API documentation. Please visit our [help center](https://support.phrase.com/hc/en-us/sections/5709662083612) for more information about the APIs. If you have any questions, please contact [Support](https://support.phrase.com/hc/requests/new). Please, include the `User-Agent` header with the name of your application or project. It might be a good idea to include some sort of contact information as well, so that we can get in touch if necessary. Examples of excellent `User-Agent` headers: > User-Agent: Example mobile app ([email protected]) <br/> User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501
99
10-
The version of the OpenAPI document: Latest
11-
Generated by OpenAPI Generator (https://openapi-generator.tech)
10+
The version of the OpenAPI document: Latest
11+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
13-
Do not edit the class manually.
13+
Do not edit the class manually.
1414
"""
1515

1616

17-
__version__ = "0.3.11"
17+
__version__ = "0.3.12"
1818

1919
# import apis into sdk package
2020
from phrasetms_client.api.additional_workflow_step_api import AdditionalWorkflowStepApi

phrasetms_client/configuration.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
Phrase TMS API
4+
Phrase TMS API
55
6-
Welcome to Phrase's TMS API documentation. Please visit our [help center](https://support.phrase.com/hc/en-us/sections/5709662083612) for more information about the APIs. If you have any questions, please contact [Support](https://support.phrase.com/hc/requests/new). Please, include the `User-Agent` header with the name of your application or project. It might be a good idea to include some sort of contact information as well, so that we can get in touch if necessary. Examples of excellent `User-Agent` headers: > User-Agent: Example mobile app ([email protected]) <br/> User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501
6+
Welcome to Phrase's TMS API documentation. Please visit our [help center](https://support.phrase.com/hc/en-us/sections/5709662083612) for more information about the APIs. If you have any questions, please contact [Support](https://support.phrase.com/hc/requests/new). Please, include the `User-Agent` header with the name of your application or project. It might be a good idea to include some sort of contact information as well, so that we can get in touch if necessary. Examples of excellent `User-Agent` headers: > User-Agent: Example mobile app ([email protected]) <br/> User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501
77
8-
The version of the OpenAPI document: Latest
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: Latest
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
"""
1313

1414

@@ -423,7 +423,9 @@ def to_debug_report(self):
423423
"OS: {env}\n"
424424
"Python Version: {pyversion}\n"
425425
"Version of the API: Latest\n"
426-
"SDK Package Version: 0.3.11".format(env=sys.platform, pyversion=sys.version)
426+
"SDK Package Version: 0.3.12".format(
427+
env=sys.platform, pyversion=sys.version
428+
)
427429
)
428430

429431
def get_host_settings(self):

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "phrasetms_client"
3-
version = "0.3.11"
3+
version = "0.3.12"
44
description = "Phrase TMS API"
55
authors = ["Martin Chrástek"]
66
license = "LGPL-3.0"

setup.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
# coding: utf-8
22

33
"""
4-
Phrase TMS API
4+
Phrase TMS API
55
6-
Welcome to Phrase's TMS API documentation. Please visit our [help center](https://support.phrase.com/hc/en-us/sections/5709662083612) for more information about the APIs. If you have any questions, please contact [Support](https://support.phrase.com/hc/requests/new). Please, include the `User-Agent` header with the name of your application or project. It might be a good idea to include some sort of contact information as well, so that we can get in touch if necessary. Examples of excellent `User-Agent` headers: > User-Agent: Example mobile app ([email protected]) <br/> User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501
6+
Welcome to Phrase's TMS API documentation. Please visit our [help center](https://support.phrase.com/hc/en-us/sections/5709662083612) for more information about the APIs. If you have any questions, please contact [Support](https://support.phrase.com/hc/requests/new). Please, include the `User-Agent` header with the name of your application or project. It might be a good idea to include some sort of contact information as well, so that we can get in touch if necessary. Examples of excellent `User-Agent` headers: > User-Agent: Example mobile app ([email protected]) <br/> User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501
77
8-
The version of the OpenAPI document: Latest
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: Latest
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
"""
1313

1414

1515
from setuptools import setup, find_packages # noqa: H301
1616
from pathlib import Path
17+
1718
this_directory = Path(__file__).parent
1819
long_description = (this_directory / "README.md").read_text()
1920

@@ -24,7 +25,7 @@
2425
# prerequisite: setuptools
2526
# http://pypi.python.org/pypi/setuptools
2627
NAME = "phrasetms-client"
27-
VERSION = "0.3.11"
28+
VERSION = "0.3.12"
2829
PYTHON_REQUIRES = ">=3.7"
2930
REQUIRES = ["urllib3 >= 1.25.3", "python-dateutil", "pydantic >= 1.10.5, < 2", "aenum"]
3031

0 commit comments

Comments
 (0)