RELEASING 656 B

12345678910111213141516
  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. Add a CHANGELOG entry for the new release with the date
  5. 4. Commit the changes with a commit message like "Packaging for release X.Y.Z"
  6. 5. Tag the release with the version (Leave REV blank for HEAD or provide a SHA)
  7. $ git tag vX.Y.Z REV
  8. 6. Push out the changes
  9. $ git push
  10. 7. Push out the tags
  11. $ git push --tags
  12. 8. Build the new .gem from the updated .gemspec
  13. $ gem build shopify_api.gemspec
  14. 9. Publish the Gem to gemcutter
  15. $ gem push shopify_api-X.Y.Z.gem