Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Create a new branch from master 

    Code Block
    git checkout master
    git pull
    git checkout -b USERNAME/release-MM-DD-YYYY
  2. Update the version number:
    • We use semantic versioning.
    • Update bower.json (for the Bower package)
    • Update package.json (for the NPM package)
  3. Add release notes to CHANGELOG.md
  4. Add and commit all the updated files

    • Use the commit message "Release <major.minor.patch>"

      • e.g. "Release 0.10.0"
  5. Create a PR with your changes
    • Note: you only need one reviewer for a release PR
  6. Merge your changes once you have thumbs

...