From 0b3edf402acc1cee20f293fb75b550d6330c0681 Mon Sep 17 00:00:00 2001 From: Josef Rousek Date: Fri, 17 Jan 2025 09:49:25 +0100 Subject: [PATCH] v2.1.2 --- CHANGELOG.md | 5 +++++ shopify_auth/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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'