diff --git a/HISTORY.rst b/HISTORY.rst index 80ac2dea..ba3d10b9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,10 @@ Shotgun Python API Changelog Here you can see the full list of changes between each Python API release. +v3.2.0 (2019 Sept 23) +===================== +- Adds a new ``project`` parameter to ``schema_field_update`` that allows to modify field visibility for a given project. + v3.1.2 (2019 Sept 17) ===================== - Adds an optional `localized` property on the Shotgun object which allows to retrieve localized display names on diff --git a/README.md b/README.md index 57a22f83..a3d72d49 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,6 @@ Integration and unit tests are provided. - 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. - Make sure the version number is filled out and correct. We follow semantic versioning. Or more correctly, we should be following it. 2) Ensure any changes or additions to public methods are documented - - 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. - 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. @@ -130,7 +129,7 @@ Integration and unit tests are provided. - Add more detailed information regarding the changes in this release. This is a great place to add examples, and reasons for the change! ### Letting the world know -We usually send an email to the `shotgun-dev` list with an announcement of the release and highlight the changes. +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. ### Prepare for the Next Dev Cycle 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` diff --git a/setup.py b/setup.py index 8837466c..49533ae6 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='shotgun_api3', - version='3.1.2', + version='3.2.0', description='Shotgun Python API ', long_description=readme, author='Shotgun Software', diff --git a/shotgun_api3/shotgun.py b/shotgun_api3/shotgun.py index 06519241..5bbc3e32 100755 --- a/shotgun_api3/shotgun.py +++ b/shotgun_api3/shotgun.py @@ -117,7 +117,7 @@ def _is_mimetypes_broken(): # ---------------------------------------------------------------------------- # Version -__version__ = "3.1.2" +__version__ = "3.2.0" # ---------------------------------------------------------------------------- # Errors