Parcourir la source

Packaging for release 9.3.0

Rezaan Syed il y a 3 ans
Parent
commit
2628f36cc5
2 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. 3 0
      CHANGELOG.md
  2. 1 1
      lib/shopify_api/version.rb

+ 3 - 0
CHANGELOG.md

@@ -11,6 +11,9 @@
 * [#821](https://github.com/Shopify/shopify_api/pull/821) Add logging based on environment variable, move log subscriber out of `detailed_log_subscriber`.
   The `ActiveResource::DetailedLogSubscriber` no longer automatically attaches when the class is loaded. If you were previously relying on that behaviour, you'll now need to call `ActiveResource::DetailedLogSubscriber.attach_to(:active_resource_detailed)`. (If using the new `SHOPIFY_LOG_PATH` environment setting then this is handled for you).
 
+## Version 9.3.0
+* Provide `ApiAccess` value object to encapsulate scope operations [#829](https://github.com/Shopify/shopify_api/pull/829)
+
 ## Version 9.2.0
 
 * Removes the `shopify` binary which will be used by the Shopify CLI

+ 1 - 1
lib/shopify_api/version.rb

@@ -1,4 +1,4 @@
 # frozen_string_literal: true
 module ShopifyAPI
-  VERSION = "9.2.0"
+  VERSION = "9.3.0"
 end