diff --git a/CHANGELOG.md b/CHANGELOG.md index e1ac8e0..9b3856a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. ## Unreleased No unreleased changes. +## 2.1.2 - 2025-01-17 + +### Changed +- Replaced 'python-jose' with 'pyjwt' because 'python-jose' is no longer maintained. + ## 2.1.1 - 2024-10-02 diff --git a/shopify_auth/__init__.py b/shopify_auth/__init__.py index d9e1509..03820ca 100644 --- a/shopify_auth/__init__.py +++ b/shopify_auth/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 1, 1) +VERSION = (2, 1, 2) __version__ = '.'.join(map(str, VERSION)) __author__ = 'Gavin Ballard'