Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 595 Bytes

RELEASE.md

File metadata and controls

26 lines (18 loc) · 595 Bytes

Release

  • Update the version in package.json.

  • Ensure the CHANGELOG is up-to-date.

    • If this release is a major version, update all the example YAML in the README, e.g. 2.0.0 would need @v1 -> @v2.
  • Run the build.

  • Create a new named tag:

git tag -a vX.Y.Z -m 'Release version vX.Y.Z'
  • Point the old vX tag to latest vX.Y.Z tag:
git tag -d vX
git push origin :refs/tags/vX
git tag -a vX -m 'Release version vX.Y.Z'
git push origin --tags
git push origin master