Skip to content

Commit d12db58

Browse files
committed
[release] 3.0.0
1 parent 08a4ab2 commit d12db58

File tree

6 files changed

+5
-11
lines changed

6 files changed

+5
-11
lines changed

gen/generator-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"!!source": "https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/python.md",
33
"packageName": "mux_python",
44
"projectName": "mux_python",
5-
"packageVersion": "2.3.1"
5+
"packageVersion": "3.0.0"
66
}

mux_python/__init__.py

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

1616
from __future__ import absolute_import
1717

18-
__version__ = "2.3.1"
18+
__version__ = "3.0.0"
1919

2020
# import apis into sdk package
2121
from mux_python.api.assets_api import AssetsApi

mux_python/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7979
self.default_headers[header_name] = header_value
8080
self.cookie = cookie
8181
# Set default User-Agent.
82-
self.user_agent = 'OpenAPI-Generator/2.3.1/python'
82+
self.user_agent = 'OpenAPI-Generator/3.0.0/python'
8383
self.client_side_validation = configuration.client_side_validation
8484

8585
def __enter__(self):

mux_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ def to_debug_report(self):
406406
"OS: {env}\n"\
407407
"Python Version: {pyversion}\n"\
408408
"Version of the API: v1\n"\
409-
"SDK Package Version: 2.3.1".\
409+
"SDK Package Version: 3.0.0".\
410410
format(env=sys.platform, pyversion=sys.version)
411411

412412
def get_host_settings(self):

mux_python/models/track.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -300,12 +300,6 @@ def max_channel_layout(self, max_channel_layout):
300300
:param max_channel_layout: The max_channel_layout of this Track. # noqa: E501
301301
:type max_channel_layout: str
302302
"""
303-
allowed_values = ["mono", "stereo", "5.2", "7.1"] # noqa: E501
304-
if self.local_vars_configuration.client_side_validation and max_channel_layout not in allowed_values: # noqa: E501
305-
raise ValueError(
306-
"Invalid value for `max_channel_layout` ({0}), must be one of {1}" # noqa: E501
307-
.format(max_channel_layout, allowed_values)
308-
)
309303

310304
self._max_channel_layout = max_channel_layout
311305

setup.py

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

1616
NAME = "mux_python"
17-
VERSION = "2.3.1"
17+
VERSION = "3.0.0"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

0 commit comments

Comments
 (0)