diff --git a/phrasetms_client/__init__.py b/phrasetms_client/__init__.py index 81c5deb..56e68c7 100644 --- a/phrasetms_client/__init__.py +++ b/phrasetms_client/__init__.py @@ -3,18 +3,18 @@ # flake8: noqa """ - Phrase TMS API +Phrase TMS API - 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 (example@phrase.com)
User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501 +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 (example@phrase.com)
User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501 - The version of the OpenAPI document: Latest - Generated by OpenAPI Generator (https://openapi-generator.tech) +The version of the OpenAPI document: Latest +Generated by OpenAPI Generator (https://openapi-generator.tech) - Do not edit the class manually. +Do not edit the class manually. """ -__version__ = "0.3.11" +__version__ = "0.3.12" # 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 0fa7cb1..a7203f7 100644 --- a/phrasetms_client/configuration.py +++ b/phrasetms_client/configuration.py @@ -1,14 +1,14 @@ # coding: utf-8 """ - Phrase TMS API +Phrase TMS API - 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 (example@phrase.com)
User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501 +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 (example@phrase.com)
User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501 - The version of the OpenAPI document: Latest - Generated by OpenAPI Generator (https://openapi-generator.tech) +The version of the OpenAPI document: Latest +Generated by OpenAPI Generator (https://openapi-generator.tech) - Do not edit the class manually. +Do not edit the class manually. """ @@ -423,7 +423,9 @@ def to_debug_report(self): "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: Latest\n" - "SDK Package Version: 0.3.11".format(env=sys.platform, pyversion=sys.version) + "SDK Package Version: 0.3.12".format( + env=sys.platform, pyversion=sys.version + ) ) def get_host_settings(self): diff --git a/pyproject.toml b/pyproject.toml index b5688b6..20f2d68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "phrasetms_client" -version = "0.3.11" +version = "0.3.12" description = "Phrase TMS API" authors = ["Martin Chrástek"] license = "LGPL-3.0" diff --git a/setup.py b/setup.py index 5a4a67f..944e4a0 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,20 @@ # coding: utf-8 """ - Phrase TMS API +Phrase TMS API - 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 (example@phrase.com)
User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501 +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 (example@phrase.com)
User-Agent: ACME Inc Java 1.8 Client (http://acmeinc.com/contact) # noqa: E501 - The version of the OpenAPI document: Latest - Generated by OpenAPI Generator (https://openapi-generator.tech) +The version of the OpenAPI document: Latest +Generated by OpenAPI Generator (https://openapi-generator.tech) - Do not edit the class manually. +Do not edit the class manually. """ from setuptools import setup, find_packages # noqa: H301 from pathlib import Path + this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text() @@ -24,7 +25,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "phrasetms-client" -VERSION = "0.3.11" +VERSION = "0.3.12" PYTHON_REQUIRES = ">=3.7" REQUIRES = ["urllib3 >= 1.25.3", "python-dateutil", "pydantic >= 1.10.5, < 2", "aenum"]