This document describes the steps to follow to release a new version of Blaze.
- Update version numbers in the following locations:
- /setup.py
- /blaze/init.py
- /conda.recipe/meta.yaml
-
Confirm the dependencies and their version numbers in /docs/source/install.rst /requirements.txt In particular,
datashape,into, etc will typically be released concurrently withblaze, so they need to be updated to match. -
Update the release notes /docs/source/releases.rst You may use a github URL like https://github.com/ContinuumIO/blaze/compare/0.6.0...master for assistance.
-
Build and update the documentation in gh-pages.
-
Verify build is working on all platforms. The jenkins builder internal to Continuum can assist with this.
-
Tag the release version.
git tag -a x.x.x -m 'Version x.x.x'And push those tags
git push --tags -
Release email to blaze-dev@continuum.io.
-
Update this release procedure document to reflect what needed to be done for the release.