Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 766 Bytes

RELEASE.md

File metadata and controls

30 lines (18 loc) · 766 Bytes

Making a release

First, update the version number in bower.json, package.json, VERSION.txt and add the date to changes.md (remove the -dev from the version number in VERSION.txt)

Merge master into the "release" branch

git checkout --track origin/release
git merge --no-commit --no-ff master

Make sure all tests are passing

make check

If tests pass, commit the merge

git commit -am "Merge master into release branch"

Create a new bundle and commit that

make bundle
git add -f bundle.js
git commit bundle.js -m "Add bundle for next release 2.0.0"

Tag the release and set it free

git tag 2.0.0
git push && git push --tags

update VERSION.txt to the next logical version number and append '-dev' to it.