Skip to content

Commit 5657c6b

Browse files
authored
Prepares release 3.2.0 (#212)
Packaging for release 3.2.0.
1 parent 0259a4c commit 5657c6b

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Shotgun Python API Changelog
44

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

7+
v3.2.0 (2019 Sept 23)
8+
=====================
9+
- Adds a new ``project`` parameter to ``schema_field_update`` that allows to modify field visibility for a given project.
10+
711
v3.1.2 (2019 Sept 17)
812
=====================
913
- Adds an optional `localized` property on the Shotgun object which allows to retrieve localized display names on

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ Integration and unit tests are provided.
116116
- Make sure the date of the release matches today. We try and keep this TBD until we're ready to do a release so it's easy to catch that it needs to be updated.
117117
- Make sure the version number is filled out and correct. We follow semantic versioning. Or more correctly, we should be following it.
118118
2) Ensure any changes or additions to public methods are documented
119-
- Update the Github wiki, and usually you'll need to update the Method Reference page with concise and exact documentation of the changes that are in this release.
120119
- Ensure that doc strings are updated in the code itself to work with Sphinx and are correctly formatted.
121120
- Examples are always good especially if this a new feature or method.
122121
- Think about a new user to the API trying to figure out how to use the features you're documenting.
@@ -130,7 +129,7 @@ Integration and unit tests are provided.
130129
- Add more detailed information regarding the changes in this release. This is a great place to add examples, and reasons for the change!
131130

132131
### Letting the world know
133-
We usually send an email to the `shotgun-dev` list with an announcement of the release and highlight the changes.
132+
Post a message in the [Pipeline Community channel](https://community.shotgunsoftware.com/c/pipeline) and send an email to [shotgun-dev](https://groups.google.com/a/shotgunsoftware.com/forum/#!forum/shotgun-dev) with a link to the community post.
134133

135134
### Prepare for the Next Dev Cycle
136135
1) Update the `__version__` value in `shotgun_api3/shotgun.py` to the next version number with `.dev` appended to it. For example, `v3.0.24.dev`

setup.py

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

2828
setup(
2929
name='shotgun_api3',
30-
version='3.1.2',
30+
version='3.2.0',
3131
description='Shotgun Python API ',
3232
long_description=readme,
3333
author='Shotgun Software',

shotgun_api3/shotgun.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def _is_mimetypes_broken():
117117

118118
# ----------------------------------------------------------------------------
119119
# Version
120-
__version__ = "3.1.2"
120+
__version__ = "3.2.0"
121121

122122
# ----------------------------------------------------------------------------
123123
# Errors

0 commit comments

Comments
 (0)