diff --git a/HISTORY.rst b/HISTORY.rst index 32510d34..07603997 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.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. diff --git a/setup.py b/setup.py index df794086..ceebf35f 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/shotgun_api3/shotgun.py b/shotgun_api3/shotgun.py index ab33f699..f9e4df4a 100644 --- a/shotgun_api3/shotgun.py +++ b/shotgun_api3/shotgun.py @@ -117,7 +117,7 @@ def _is_mimetypes_broken(): # ---------------------------------------------------------------------------- # Version -__version__ = "3.2.1" +__version__ = "3.2.2" # ---------------------------------------------------------------------------- # Errors