-
Notifications
You must be signed in to change notification settings - Fork 478
New Release
Nicole Sullivan edited this page Aug 15, 2013
·
3 revisions
Creating a new release with Grunt is relatively easy. Most tasks will be done for you via automated grunt tasks.
- Modify the release number in package.json (we use semantic versioning, so choose your version number wisely)
- Run
grunt release
- Commit the
release
directory and theCHANGELOG
file:git commit -m "Release v<release number>"
- Tag the release
git tag v<release number>
- Push the commit and the tag
git push && git push --tags
If you need examples to follow you can see both the CHANGELOG and the release history on github.
Next, you are ready to release to the website. Documentation for that push process can be found in the website repo.