Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 820 Bytes

RELEASE.md

File metadata and controls

29 lines (26 loc) · 820 Bytes

How to release this project

Versioning Policy

What to do

npm --no-git-tag-version version <RELEASE-VERSION>
git add package.json package-lock.json
git commit -m "next Release <RELEASE-VERSION> (Ref <ISSUE-ID>)"
  • Create release tag
git tag -a <RELEASE-VERSION> -m "release <RELEASE-VERSION> (Ref <ISSUE-ID>)"
  • Set next version x.y+1.0-SNAPSHOT in package.json and package-lock.json
npm --no-git-tag-version version <NEXT-SNAPSHOT-VERSION>
git add package.json package-lock.json
git commit -m "next snapshot (Ref <ISSUE-ID>)"
  • Push
git push origin master
git push origin <RELEASE-VERSION>