RELEASING 822 B

1234567891011121314151617
  1. Releasing ShopifyAPI
  2. 1. Check the Semantic Versioning page for info on how to version the new release: http://semver.org
  3. 2. Update the version of ShopifyAPI in lib/shopify_api/version.rb
  4. 3. Run `bundle`
  5. 4. Add a CHANGELOG entry for the new release
  6. 5. Commit the changes with a commit message like "Packaging for release X.Y.Z"
  7. 6. Tag the release with the version (Leave REV blank for HEAD or provide a SHA)
  8. $ git tag vX.Y.Z REV
  9. 7. Push out the changes
  10. $ git push
  11. 8. Push out the tags
  12. $ git push --tags
  13. 9. Publish the gem using Shipit
  14. 10. Consider if the dependency in Shopify/shopify needs updated. It's used only by the tests so is a low risk change.
  15. Also consider Shopify/shopify_app whose gemspec depends on this.
  16. We don't need to do this for every release, but we should try to keep them relatively up to date.