diff --git a/HISTORY.rst b/HISTORY.rst index e69bb0bb..620b50ee 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,13 @@ Shotgun Python API Changelog Here you can see the full list of changes between each Python API release. +v3.0.35 (2017 December 8) +===================== + +- Add exception UserCredentialsNotAllowedForSSOAuthenticationFault. + Triggered when attempting to initiate a connection with a username/password + pair on an SSO-enabled Shotgun site. + v3.0.34 (2017 September 18) ===================== diff --git a/setup.py b/setup.py index a1eaa21f..44faa0d2 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='shotgun_api3', - version='3.0.34', + version='3.0.35', description='Shotgun Python API ', long_description=readme, author='Shotgun Software', @@ -27,6 +27,6 @@ packages=find_packages(exclude=('tests',)), script_args=script_args, include_package_data=True, - package_data={'': [ 'cacerts.txt']}, + package_data={'': ['cacerts.txt']}, zip_safe=False, ) diff --git a/shotgun_api3/shotgun.py b/shotgun_api3/shotgun.py index e4840efc..a23278e7 100755 --- a/shotgun_api3/shotgun.py +++ b/shotgun_api3/shotgun.py @@ -91,7 +91,7 @@ # ---------------------------------------------------------------------------- # Version -__version__ = "3.0.34" +__version__ = "3.0.35" # ---------------------------------------------------------------------------- # Errors