diff --git a/CHANGELOG.md b/CHANGELOG.md index 9064956..d1a91d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [2.3.0](https://github.com/phrase/openapi/compare/python-v2.2.0...python-v2.3.0) (2024-07-15) + + +### Features + +* add repo sync events show endpoint ([#641](https://github.com/phrase/openapi/issues/641)) ([e1d9cfb](https://github.com/phrase/openapi/commit/e1d9cfb23e079fea2d9e5475dff9a4137f1f0154)) +* **API:** Async downloads [TSI-2515] ([#642](https://github.com/phrase/openapi/issues/642)) ([6fcab5d](https://github.com/phrase/openapi/commit/6fcab5d4719f64e8e5dd49c327dc9348b384de4c)) + + +### Bug Fixes + +* add app_min_version and app_max_version param to releases ([#633](https://github.com/phrase/openapi/issues/633)) ([b384301](https://github.com/phrase/openapi/commit/b3843012460ace4c1d34c4373e5158595466adcb)) + ## [2.2.0](https://github.com/phrase/openapi/compare/python-v2.1.1...python-v2.2.0) (2024-06-12) diff --git a/README.md b/README.md index 1683477..c9cda42 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Phrase Strings is a translation management platform for software projects. You c This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 2.0.0 -- Package version: 2.2.0 +- Package version: 2.3.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit [https://developers.phrase.com/api/](https://developers.phrase.com/api/) diff --git a/phrase_api/__init__.py b/phrase_api/__init__.py index fd182b9..4f92ba9 100644 --- a/phrase_api/__init__.py +++ b/phrase_api/__init__.py @@ -13,7 +13,7 @@ from __future__ import absolute_import -__version__ = "2.2.0" +__version__ = "2.3.0" # import apis into sdk package from phrase_api.api.accounts_api import AccountsApi diff --git a/phrase_api/api_client.py b/phrase_api/api_client.py index b3f73a9..b567c0f 100644 --- a/phrase_api/api_client.py +++ b/phrase_api/api_client.py @@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/2.2.0/python' + self.user_agent = 'OpenAPI-Generator/2.3.0/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/phrase_api/configuration.py b/phrase_api/configuration.py index d83b122..5dcdf38 100644 --- a/phrase_api/configuration.py +++ b/phrase_api/configuration.py @@ -370,7 +370,7 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 2.0.0\n"\ - "SDK Package Version: 2.2.0".\ + "SDK Package Version: 2.3.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/pyproject.toml b/pyproject.toml index 2f44598..6da4468 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "phrase_api" -version = "2.2.0" +version = "2.3.0" description = "Phrase Strings API Reference" authors = ["Phrase Support "] license = "MIT" diff --git a/setup.py b/setup.py index 5863d1e..dbab1a8 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "phrase-api" -VERSION = "2.2.0" +VERSION = "2.3.0" # To install the library, run the following # # python setup.py install