Skip to content

Commit ba05854

Browse files
author
Jean-François Boismenu
committed
Packaging up for the 3.0.39 release.
1 parent c699e4b commit ba05854

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

HISTORY.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ Shotgun Python API Changelog
44

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

7-
v3.0.38 (2019 February 7)
7+
v3.0.39 (2019 February 20)
8+
=====================
9+
- Ensures the certificates packaged with the API and those specified via the `SHOTGUN_API_CACERTS` environment variable
10+
are used when uploading a file.
11+
12+
v3.0.39 (2019 February 7)
813
=====================
914
- Upgrades the version of ``httplib2`` to ``0.12.0``, which fixes SNI issues. Note this
1015
version contains a more recent list of certificate authorities. If you are running Shotgun locally and have

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Integration and unit tests are provided.
6666
- Ensure that doc strings are updated in the code itself to work with Sphinx and are correctly formatted.
6767
- Examples are always good especially if this a new feature or method.
6868
- Think about a new user to the API trying to figure out how to use the features you're documenting.
69-
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.
69+
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.
7070
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.
7171
5) Commit these changes in master with a commit message like `packaging for the vx.x.x release`.
7272
6) Create a tag based off of the master branch called `vx.x.x` to match the version number you're releasing.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='shotgun_api3',
20-
version='3.0.38',
20+
version='3.0.39',
2121
description='Shotgun Python API ',
2222
long_description=readme,
2323
author='Shotgun Software',

shotgun_api3/shotgun.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292

9393
# ----------------------------------------------------------------------------
9494
# Version
95-
__version__ = "3.0.38"
95+
__version__ = "3.0.39"
9696

9797
# ----------------------------------------------------------------------------
9898
# Errors

0 commit comments

Comments
 (0)