diff --git a/CHANGELOG.md b/CHANGELOG.md index 25c3b6e..e69037e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. ## Unreleased No unreleased changes. +## 2.0.1 - 2024-06-14 + +### Changed +- Shopify UI extensions send tokens without iss key. To prevent the middleware from raising exceptions for these requests we're now ignoring missing iss key. + + ## 2.0.0 - 2023-01-10 ### Removed diff --git a/shopify_auth/__init__.py b/shopify_auth/__init__.py index 0852a5a..475bbb2 100644 --- a/shopify_auth/__init__.py +++ b/shopify_auth/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 0, 0) +VERSION = (2, 0, 1) __version__ = '.'.join(map(str, VERSION)) __author__ = 'Gavin Ballard'