diff --git a/HISTORY.rst b/HISTORY.rst index 14e1b900..0fd71223 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,20 @@ ShotGrid Python API Changelog Here you can see the full list of changes between each Python API release. +v3.4.1 (2023 Jan 29) +==================== +- Flaky Tests +- Documentation: Fix issue regarding "in" filter prototype +- Documentation: Travis badge image is no working anymore +- Documentation: Add ``user_subscription_read`` and ``user_subscription_create`` methods +- Update Python Certifi license block +- Add methods for the user_subscriptions API end points +- Retry ShotGrid request also on error 504 +- Retry S3 uploads on error 500 +- Comment typing annotation breaks Python 2 compatibility +- Add field type ``entity_type`` to mockgun + + v3.4.0 (2023 Sep 22) ==================== - Started support for Python 3.10 for CI. diff --git a/setup.py b/setup.py index 1df41044..00e14021 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='shotgun_api3', - version='3.4.0', + version='3.4.1', description='ShotGrid Python API ', long_description=readme, author='ShotGrid Software', diff --git a/shotgun_api3/shotgun.py b/shotgun_api3/shotgun.py index a3b78974..e0ca395b 100644 --- a/shotgun_api3/shotgun.py +++ b/shotgun_api3/shotgun.py @@ -122,7 +122,7 @@ def _is_mimetypes_broken(): # ---------------------------------------------------------------------------- # Version -__version__ = "3.4.0" +__version__ = "3.4.1" # ---------------------------------------------------------------------------- # Errors