From 7b14fd76643bd92dc28a8bf2ca046dc030f38ee1 Mon Sep 17 00:00:00 2001 From: Patrick Hubert Date: Fri, 8 Dec 2017 12:38:26 -0500 Subject: [PATCH] Preparing release v3.0.35 --- HISTORY.rst | 7 +++++++ setup.py | 4 ++-- shotgun_api3/shotgun.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index e69bb0bb3..620b50eea 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 a1eaa21f7..44faa0d2b 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 e4840efc9..a23278e7a 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