Skip to content

Commit 8b569cd

Browse files
author
Phrase
committed
1 parent 0704b4f commit 8b569cd

File tree

7 files changed

+22
-6
lines changed

7 files changed

+22
-6
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [3.3.0](https://github.com/phrase/openapi/compare/python-v3.2.0...python-v3.3.0) (2025-05-16)
4+
5+
6+
### Features
7+
8+
* **API:** Add "verify_mentioned_translations" parameter to uploads ([#830](https://github.com/phrase/openapi/issues/830)) ([f2fdf60](https://github.com/phrase/openapi/commit/f2fdf60dd97c3908293cd457a765dafde603bd9b))
9+
* **API:** Add processed & upload total translations on upload summary ([#824](https://github.com/phrase/openapi/issues/824)) ([081db68](https://github.com/phrase/openapi/commit/081db68d2ffcf5d66a81e07eec0a9572a1f9d633))
10+
* **API:** add updated_since filter to job list #STRINGS-1555 ([#799](https://github.com/phrase/openapi/issues/799)) ([dc9b6ed](https://github.com/phrase/openapi/commit/dc9b6ed12e013231d397820449086c87fea2f8ba))
11+
* **API:** Include roles in account response ([#811](https://github.com/phrase/openapi/issues/811)) ([dc27ee5](https://github.com/phrase/openapi/commit/dc27ee5117762222b6e1e6abb639f8e00c6a9101))
12+
* **API:** Translations unreview & batch unreview ([#831](https://github.com/phrase/openapi/issues/831)) ([6a696db](https://github.com/phrase/openapi/commit/6a696db00d80d8acaf5887a08a7a97997566eb8f))
13+
14+
15+
### Bug Fixes
16+
17+
* **API:** Remove request body from GET comments ([#817](https://github.com/phrase/openapi/issues/817)) ([2646001](https://github.com/phrase/openapi/commit/264600132e80ac03983e0ae86e99db3d6fb9080d))
18+
319
## [3.2.0](https://github.com/phrase/openapi/compare/python-v3.1.0...python-v3.2.0) (2025-02-17)
420

521

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Phrase Strings is a translation management platform for software projects. You c
55
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
66

77
- API version: 2.0.0
8-
- Package version: 3.2.0
8+
- Package version: 3.3.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010
For more information, please visit [https://developers.phrase.com/api/](https://developers.phrase.com/api/)
1111

phrase_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
from __future__ import absolute_import
1515

16-
__version__ = "3.2.0"
16+
__version__ = "3.3.0"
1717

1818
# import apis into sdk package
1919
from phrase_api.api.accounts_api import AccountsApi

phrase_api/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers[header_name] = header_value
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'OpenAPI-Generator/3.2.0/python'
80+
self.user_agent = 'OpenAPI-Generator/3.3.0/python'
8181
self.client_side_validation = configuration.client_side_validation
8282

8383
def __enter__(self):

phrase_api/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def to_debug_report(self):
370370
"OS: {env}\n"\
371371
"Python Version: {pyversion}\n"\
372372
"Version of the API: 2.0.0\n"\
373-
"SDK Package Version: 3.2.0".\
373+
"SDK Package Version: 3.3.0".\
374374
format(env=sys.platform, pyversion=sys.version)
375375

376376
def get_host_settings(self):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "phrase_api"
3-
version = "3.2.0"
3+
version = "3.3.0"
44
description = "Phrase Strings API Reference"
55
authors = ["Phrase Support <[email protected]>"]
66
license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "phrase-api"
15-
VERSION = "3.2.0"
15+
VERSION = "3.3.0"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)