Skip to content

Commit 74c8047

Browse files
Packaging for v3.6.1 (#348)
* Packaging for v3.6.1
1 parent f3a2230 commit 74c8047

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

HISTORY.rst

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Flow Production Tracking Python API Changelog
44

55
Here you can see the full list of changes between each Python API release.
66

7+
v3.6.1 (2024 Jun 6)
8+
===================
9+
- Adds multi_entity_update_modes support to mockgun ``update()`` and ``batch()`` methods.
10+
- Implements a retry strategy only when encountering an URLError or SSLEOFError.
11+
- Fixes the issue with deleting prefix and suffix for ``display_name`` variable at the moment of upload for a local install.
12+
- Clarifies the use of ``_build_opener`` in ``download_attachment()``.
13+
714
v3.6.0 (2024 May 1)
815
===================
916
- Drop support for Python 2.7

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
setup(
2929
name='shotgun_api3',
30-
version='3.6.0',
30+
version='3.6.1',
3131
description='Flow Production Tracking Python API',
3232
long_description=readme,
3333
author='Autodesk',

shotgun_api3/shotgun.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def _is_mimetypes_broken():
115115

116116
# ----------------------------------------------------------------------------
117117
# Version
118-
__version__ = "3.6.0"
118+
__version__ = "3.6.1"
119119

120120
# ----------------------------------------------------------------------------
121121
# Errors

0 commit comments

Comments
 (0)