Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.07 KB

RELEASE_PROCEDURE.md

File metadata and controls

40 lines (27 loc) · 1.07 KB

Blaze Release Procedure

This document describes the steps to follow to release a new version of Blaze.

  1. Update version numbers in the following locations:
  • /setup.py
  • /blaze/init.py
  • /conda.recipe/meta.yaml
  1. Confirm the dependencies and their version numbers in /docs/source/install.rst /requirements.txt In particular, datashape, into, etc will typically be released concurrently with blaze, so they need to be updated to match.

  2. 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.

  3. Build and update the documentation in gh-pages.

  4. Verify build is working on all platforms. The jenkins builder internal to Continuum can assist with this.

  5. Tag the release version.

     git tag -a x.x.x -m 'Version x.x.x'
    

    And push those tags

     git push --tags
    
  6. Release email to [email protected].

  7. Update this release procedure document to reflect what needed to be done for the release.