Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
=====================

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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,
)
2 changes: 1 addition & 1 deletion shotgun_api3/shotgun.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@

# ----------------------------------------------------------------------------
# Version
__version__ = "3.0.34"
__version__ = "3.0.35"

# ----------------------------------------------------------------------------
# Errors
Expand Down