From 74c8047d304710bbe9b1a33d950e0e4da974f82c Mon Sep 17 00:00:00 2001 From: Eduardo Chauca <166560435+eduardoChaucaGallegos@users.noreply.github.com> Date: Thu, 13 Jun 2024 17:55:03 -0500 Subject: [PATCH] Packaging for v3.6.1 (#348) * Packaging for v3.6.1 --- HISTORY.rst | 7 +++++++ setup.py | 2 +- shotgun_api3/shotgun.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index ca83eae4..3b7dd4d9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,13 @@ Flow Production Tracking Python API Changelog Here you can see the full list of changes between each Python API release. +v3.6.1 (2024 Jun 6) +=================== +- Adds multi_entity_update_modes support to mockgun ``update()`` and ``batch()`` methods. +- Implements a retry strategy only when encountering an URLError or SSLEOFError. +- Fixes the issue with deleting prefix and suffix for ``display_name`` variable at the moment of upload for a local install. +- Clarifies the use of ``_build_opener`` in ``download_attachment()``. + v3.6.0 (2024 May 1) =================== - Drop support for Python 2.7 diff --git a/setup.py b/setup.py index 12653f21..a0f51e76 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='shotgun_api3', - version='3.6.0', + version='3.6.1', description='Flow Production Tracking Python API', long_description=readme, author='Autodesk', diff --git a/shotgun_api3/shotgun.py b/shotgun_api3/shotgun.py index 84060f25..4d65be51 100644 --- a/shotgun_api3/shotgun.py +++ b/shotgun_api3/shotgun.py @@ -115,7 +115,7 @@ def _is_mimetypes_broken(): # ---------------------------------------------------------------------------- # Version -__version__ = "3.6.0" +__version__ = "3.6.1" # ---------------------------------------------------------------------------- # Errors