Skip to content

Commit

Permalink
Packaging up for the 3.0.39 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfboismenu committed Feb 20, 2019
1 parent c699e4b commit ba05854
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion shotgun_api3/shotgun.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@

# ----------------------------------------------------------------------------
# Version
__version__ = "3.0.38"
__version__ = "3.0.39"

# ----------------------------------------------------------------------------
# Errors
Expand Down

0 comments on commit ba05854

Please sign in to comment.