diff --git a/mux_python/__init__.py b/mux_python/__init__.py index 2fe98a1..6f30307 100644 --- a/mux_python/__init__.py +++ b/mux_python/__init__.py @@ -11,7 +11,7 @@ from __future__ import absolute_import -__version__ = "1.11.0" +__version__ = "1.12.0" # import apis into sdk package from mux_python.api.assets_api import AssetsApi diff --git a/mux_python/api_client.py b/mux_python/api_client.py index e31cddd..9ce7cf1 100644 --- a/mux_python/api_client.py +++ b/mux_python/api_client.py @@ -72,7 +72,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 = 'Mux Python | 1.11.0' + self.user_agent = 'Mux Python | 1.12.0' def __del__(self): if self._pool: diff --git a/mux_python/configuration.py b/mux_python/configuration.py index 06a7c83..940b72e 100644 --- a/mux_python/configuration.py +++ b/mux_python/configuration.py @@ -228,5 +228,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: v1\n"\ - "SDK Package Version: 1.11.0".\ + "SDK Package Version: 1.12.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/setup.py b/setup.py index 0d208ba..6ab0c5f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "mux_python" -VERSION = "1.11.0" +VERSION = "1.12.0" # To install the library, run the following # # python setup.py install @@ -26,7 +26,7 @@ description="Official Mux API wrapper for python projects 🐍.", author_email="sdks@mux.com", url="https://github.com/muxinc/mux-python", - download_url="https://github.com/muxinc/mux-python/archive/1.11.0.tar.gz", + download_url="https://github.com/muxinc/mux-python/archive/1.12.0.tar.gz", keywords=["Mux API", "Video", "Live Stream", "VOD", "Streaming"], install_requires=REQUIRES, packages=find_packages(),