This project follows semver. So if you are making a bug fix, only increment the patch level "1.0.x". If any new files are added, a minor version "1.x.x" bump is in order.
To prepare the release commit:
- Edit the bower.json
version
value. - Change the npm package.json
version
value to match. - Make a single commit with the description as "Fetch 1.x.x".
- Finally, tag the commit with
v1.x.x
.
$ git pull
$ vim bower.json
$ vim package.json
$ git add bower.json package.json
$ git commit -m "Fetch 1.x.x"
$ git tag v1.x.x
$ git push
$ git push --tags