Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 327 Bytes

RELEASE.md

File metadata and controls

18 lines (13 loc) · 327 Bytes

How to release an update

When cutting a new release, tag the versioned change and then move the current major version.

For example, right now I'm Releasing v1.1.0, so I'm going to:

git tag v1.1.0
git push --tags

And then move the major tag:

git tag -fa v1 -m "Update v1 tag"
git push origin v1 --force