Skip to content

Commit

Permalink
VERSION BUMP to 1.12.0 (automated)
Browse files Browse the repository at this point in the history
  • Loading branch information
eropple committed Mar 17, 2021
1 parent c954557 commit f47c3ca
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mux_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mux_python/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion mux_python/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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(),
Expand Down

0 comments on commit f47c3ca

Please sign in to comment.