Ver código fonte

Merge pull request #599 from Shopify/add-2019-10-prerelease

Adds a 2019-10 prerelease API version
Gareth du Plooy 5 anos atrás
pai
commit
837b624bf3
2 arquivos alterados com 2 adições e 1 exclusões
  1. 1 1
      README.md
  2. 1 0
      lib/shopify_api/defined_versions.rb

+ 1 - 1
README.md

@@ -393,7 +393,7 @@ while products.next_page?
 end
 ```
 
-Relative cursor pagination is currently available for all endpoints using the `unstable` API version.
+Relative cursor pagination is currently available for all endpoints using the `2019-10` and later API versions.
 
 ## Using Development Version
 

+ 1 - 0
lib/shopify_api/defined_versions.rb

@@ -5,6 +5,7 @@ module ShopifyAPI
       define_version(ShopifyAPI::ApiVersion::Unstable.new)
       define_version(ShopifyAPI::ApiVersion::Release.new('2019-04'))
       define_version(ShopifyAPI::ApiVersion::Release.new('2019-07'))
+      define_version(ShopifyAPI::ApiVersion::Release.new('2019-10'))
     end
   end
 end