Skip to content

Releasing a new build

Bradley Kreider edited this page Feb 5, 2020 · 2 revisions

How to tag and release an official version

Do not release until testing and builds are clean.

  1. git checkout
  2. (No changelog yet) Edit changelog for new additions.
  3. (No changelog yet) git commit -m "updated changelog for release" CHANGELOG.md
  4. git describe --always --long # sanity check for current tag
  5. git tag -a <release number>
  6. git push --tags

This will kick off a Travis-CI build and the deploy steps will push it to Anaconda.org.

Clone this wiki locally