Ver Fonte

Merge pull request #613 from Shopify/release-7.1.0

Packaging for release 7.1.0
Drew Martin há 5 anos atrás
pai
commit
c8f02c0691
2 ficheiros alterados com 8 adições e 1 exclusões
  1. 7 0
      CHANGELOG.md
  2. 1 1
      lib/shopify_api/version.rb

+ 7 - 0
CHANGELOG.md

@@ -1,3 +1,10 @@
+== Version 7.1.0
+
+* Add 2019-10 to known API versions
+* Add support for cursor pagination [#594](https://github.com/Shopify/shopify_api/pull/594) and
+[#611](https://github.com/Shopify/shopify_api/pull/611)
+* `ShopifyAPI::Base.api_version` now defaults to `ShopifyAPI::ApiVersion::NullVersion` instead of `nil`. Making requests without first setting an ApiVersion raises `ApiVersionNotSetError` instead of `NoMethodError: undefined method 'construct_api_path' for nil:NilClass'` [#605](https://github.com/Shopify/shopify_api/pull/605)
+
 == Version 7.0.2
 
 * Add 2019-07 to known API versions.

+ 1 - 1
lib/shopify_api/version.rb

@@ -1,3 +1,3 @@
 module ShopifyAPI
-  VERSION = "7.0.2"
+  VERSION = "7.1.0"
 end