Преглед изворни кода

Adds a 2019-10 prerelease API version

Gareth du Plooy пре 5 година
родитељ
комит
8a8a41ab56
2 измењених фајлова са 2 додато и 1 уклоњено
  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