Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 785 Bytes

RELEASING.md

File metadata and controls

36 lines (21 loc) · 785 Bytes
  1. Do a release of schemapi if necessary

  2. Update version to, e.g. 2.0.0

    • in altair/init.py
    • in doc/conf.py (two places)
  3. Commit change and push to master

    git add altair -u
    git commit -m "MAINT: bump version to 2.0.0"
    git push origin master
    
  4. Tag the release:

    git tag -a v2.0.0 -m "version 2.0.0 release"
    git push origin v2.0.0
    
  5. publish to PyPI (Requires correct PyPI owner permissions)

    python setup.py sdist upload
    
  6. update version to, e.g. 2.1.0dev

    • in altair/init.py
    • in doc/conf.py (two places)
  7. Commit change and push to master

    git add altair -u
    git commit -m "MAINT: bump version to 2.1.0dev"
    git push origin master
    
  8. Update recipe on conda-forge/altair-feedstock