From 37f9eab5455071583fe8e3bbe5e1459799c70f78 Mon Sep 17 00:00:00 2001 From: Josef Rousek Date: Wed, 2 Oct 2024 16:47:35 +0200 Subject: [PATCH] v2.1.1 --- CHANGELOG.md | 6 ++++++ shopify_auth/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 070a19e..e1ac8e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. No unreleased changes. +## 2.1.1 - 2024-10-02 + +### Changed +- Reverted Django version requirement back to 3.2. + + ## 2.1.0 - 2024-10-02 ### Added diff --git a/shopify_auth/__init__.py b/shopify_auth/__init__.py index fd5a101..d9e1509 100644 --- a/shopify_auth/__init__.py +++ b/shopify_auth/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 1, 0) +VERSION = (2, 1, 1) __version__ = '.'.join(map(str, VERSION)) __author__ = 'Gavin Ballard'