Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 792 Bytes

RELEASING.md

File metadata and controls

39 lines (28 loc) · 792 Bytes

Releasing

  1. Check that CI is green.

  2. Double check that code linter and tests pass:

    make lint-docker
    make test SHELL=bash  # if on macOS
    make test SHELL=zsh   # if on macOS
    make test-docker
  3. Update CHNODE_VERSION:

    $EDITOR chnode.sh
  4. Summarize changes since the last release:

    $EDITOR CHANGELOG.md
  5. Review your changes, commit them, tag the release:

    git diff
    git add -p
    git commit -m 'Release version $version'
    git tag v$version
    git push origin master v$version
  6. Update Homebrew tap.