diff --git a/CHANGELOG.md b/CHANGELOG.md index e69037e..070a19e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. ## Unreleased No unreleased changes. + +## 2.1.0 - 2024-10-02 + +### Added +- Added utility functions for managed app installation. + + ## 2.0.1 - 2024-06-14 ### Changed diff --git a/shopify_auth/__init__.py b/shopify_auth/__init__.py index 475bbb2..fd5a101 100644 --- a/shopify_auth/__init__.py +++ b/shopify_auth/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 0, 1) +VERSION = (2, 1, 0) __version__ = '.'.join(map(str, VERSION)) __author__ = 'Gavin Ballard'