From ef5aabe9ad97a923aba8f1cec7ff5019a04054a9 Mon Sep 17 00:00:00 2001 From: Dan Braghis Date: Tue, 1 Feb 2022 22:17:55 +0000 Subject: [PATCH] Bump version to 0.2.1 --- CHANGELOG.md | 7 ++++++- src/wagtail_headless_preview/version.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10ffe8b..1e20ac0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1] - 2022-02-01 + +## Fixed +- Deprecated settings not handled correctly. Thanks to @Schille for the report. + ## [0.2.0] - 2022-01-30 This release adds a number of useful features such as a default client URL placeholder, @@ -28,7 +33,7 @@ WAGTAIL_HEADLESS_PREVIEW = { - Add support for a `{SITE_ROOT_URL}` placeholder in "default" preview client URL ([#20](https://github.com/torchbox/wagtail-headless-preview/pull/20)) - Thanks @jaap3 - Add [pre-commit](https://pre-commit.com/) support ([#21](https://github.com/torchbox/wagtail-headless-preview/pull/21)) - @zerolab -- Add `HeadlessMixin` and `HeadlessServeMixin` ([#22](https://github.com/torchbox/wagtail-headless-preview/pull/22)) - @zerolab +- Add `HeadlessMixin` and `HeadlessServeMixin` ([#22](https://github.com/torchbox/wagtail-headless-preview/pull/22)) - @zerolab based on code from @tbrlpld - Add setting to redirect to the client preview URL ([#23](https://github.com/torchbox/wagtail-headless-preview/pull/23)) - @zerolab based on real world code from @jaap3 ### Changed diff --git a/src/wagtail_headless_preview/version.py b/src/wagtail_headless_preview/version.py index b32a761..110f18c 100644 --- a/src/wagtail_headless_preview/version.py +++ b/src/wagtail_headless_preview/version.py @@ -1,2 +1,2 @@ -VERSION = (0, 2, 0) +VERSION = (0, 2, 1) __version__ = ".".join(map(str, VERSION))