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.2.2 (2019 Dec 11)
=====================
- Upgrades packaged six module to 1.13.0
- Adds ``platform`` and ``normalize_platform`` to sgsix module to provide unified platform value across Python 2/3
- Changes httplib import procedure to emulate direct import of the module
- Adds test to ensure httplib2 is importable as expected

v3.2.1 (2019 Oct 29)
=====================
- Returns a specific error from ``share_thumbnail`` when the source thumbnail is a 'transient' thumbnail.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

setup(
name='shotgun_api3',
version='3.2.1',
version='3.2.2',
description='Shotgun Python API ',
long_description=readme,
author='Shotgun Software',
Expand Down
2 changes: 1 addition & 1 deletion shotgun_api3/shotgun.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def _is_mimetypes_broken():

# ----------------------------------------------------------------------------
# Version
__version__ = "3.2.1"
__version__ = "3.2.2"

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