Skip to content

Releasing a new version

RSO edited this page Sep 10, 2014 · 2 revisions
  • Go to the master branch
  • Run npm version patch (instead of patch you could also use minor, or major)
  • Update the version in the bower.json file, and run git add bower.json; git commit --amend to add the change to the version bump commit
  • Push the version bump and tags git push; git push --tags
  • The Bower component is now updated, to update the rails assets gem go to https://rails-assets.org/components/new and type the name of the gem to get the update reindexed.
  • To publish the NPM package, run npm publish
  • Create a new Github release based on the Git tag you've created and add your changes to the change log.

Clone this wiki locally