Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.07 KB

RELEASING.md

File metadata and controls

29 lines (21 loc) · 1.07 KB

Releasing koa-shopify-auth

  1. Check the Semantic Versioning page for info on how to version the new release: http://semver.org

  2. Ensure your local repo is up-to-date

    git checkout master && git pull
    
  3. Add an entry for the new release to CHANGELOG.md, and/or move the contents from the Unreleased to the new release

  4. Stage the CHANGELOG.md file

    git add CHANGELOG.md
    
  5. To update the version, create the appropriate tag, commit all staged changes and push to the remote repository

    yarn version [ --patch | --minor | --major ]
    

    Select the applicable option to the yarn version command to increment the appropriate part of the version number, i.e., for a version of x.y.z,

    • --patch to increment the z
    • --minor to increment the y
    • --major to increment the x

    The preversion and postversion scripts in package.json take care of the pre (testing) and post (pushing) actions.

  6. Login to shipit and press Deploy on the appropriate commit (the commit description will be the version number).