diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a596e..ec72c7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,18 @@ All notable changes to this project will be documented in this file. ## Unreleased +No unreleased changes. + +## 0.6.0 - 2022-05-08 +### Added - Add support for Django 4 +### Changed +- Update hmac not valid status code + +### Removed +- Signals: remove deprecated provided_args argument + ## 0.5.1 - 2019-12-23 ### Changed - Fixed long description for package upload diff --git a/shopify_webhook/__init__.py b/shopify_webhook/__init__.py index 3f393a3..c435cbb 100644 --- a/shopify_webhook/__init__.py +++ b/shopify_webhook/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 5, 1) +VERSION = (0, 6, 0) __version__ = '.'.join(map(str, VERSION)) __author__ = 'Gavin Ballard'