From ba05854628a63f26f941cf0b068444824f4cb8aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Boismenu?= Date: Wed, 20 Feb 2019 13:08:53 -0500 Subject: [PATCH] Packaging up for the 3.0.39 release. --- HISTORY.rst | 7 ++++++- README.md | 2 +- setup.py | 2 +- shotgun_api3/shotgun.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 75ea18dd..f3f934a1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,7 +4,12 @@ Shotgun Python API Changelog Here you can see the full list of changes between each Python API release. -v3.0.38 (2019 February 7) +v3.0.39 (2019 February 20) +===================== +- Ensures the certificates packaged with the API and those specified via the `SHOTGUN_API_CACERTS` environment variable + are used when uploading a file. + +v3.0.39 (2019 February 7) ===================== - Upgrades the version of ``httplib2`` to ``0.12.0``, which fixes SNI issues. Note this version contains a more recent list of certificate authorities. If you are running Shotgun locally and have diff --git a/README.md b/README.md index a3d2a0a7..1fff6177 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Integration and unit tests are provided. - Ensure that doc strings are updated in the code itself to work with Sphinx and are correctly formatted. - Examples are always good especially if this a new feature or method. - Think about a new user to the API trying to figure out how to use the features you're documenting. -3) Update the version value in `shotgun_api3/setup.py` to match the version you are packaging. This controls what version users will get when installing via pip. +3) Update the version value in `python-api/setup.py` to match the version you are packaging. This controls what version users will get when installing via pip. 4) Update the `__version__` value in `shotgun_api3/shotgun.py` to the version you're releasing. This identified the current version within the API itself. 5) Commit these changes in master with a commit message like `packaging for the vx.x.x release`. 6) Create a tag based off of the master branch called `vx.x.x` to match the version number you're releasing. diff --git a/setup.py b/setup.py index d1c5c08a..ebcf099d 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='shotgun_api3', - version='3.0.38', + version='3.0.39', description='Shotgun Python API ', long_description=readme, author='Shotgun Software', diff --git a/shotgun_api3/shotgun.py b/shotgun_api3/shotgun.py index b10ff51a..b2b9cffb 100755 --- a/shotgun_api3/shotgun.py +++ b/shotgun_api3/shotgun.py @@ -92,7 +92,7 @@ # ---------------------------------------------------------------------------- # Version -__version__ = "3.0.38" +__version__ = "3.0.39" # ---------------------------------------------------------------------------- # Errors