From 2848367e58a896a12b5a4874b9970a5f71a39e08 Mon Sep 17 00:00:00 2001 From: zerolab Date: Fri, 20 Oct 2023 14:56:40 +0100 Subject: [PATCH] Bump version to 0.7 --- CHANGELOG.md | 5 ++++- src/wagtail_headless_preview/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 220b394..b7cac86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7] - 2023-10-20 + ### Added - Make Wagtail 5.1 and 5.2 support official [#50](https://github.com/torchbox/wagtail-headless-preview/pull/50) Thanks @lparsons396, [#51](https://github.com/torchbox/wagtail-headless-preview/pull/51) @@ -119,7 +121,8 @@ WAGTAIL_HEADLESS_PREVIEW = { Initial release -[unreleased]: https://github.com/torchbox/wagtail-headless-preview/compare/v0.4.0...HEAD +[unreleased]: https://github.com/torchbox/wagtail-headless-preview/compare/v0.7.0...HEAD +[0.7]: https://github.com/torchbox/wagtail-headless-preview/compare/v0.8.0...v0.7.0 [0.6]: https://github.com/torchbox/wagtail-headless-preview/compare/v0.5.0...v0.6.0 [0.5]: https://github.com/torchbox/wagtail-headless-preview/compare/v0.4.0...v0.5.0 [0.4]: https://github.com/torchbox/wagtail-headless-preview/compare/v0.3.0...v0.4.0 diff --git a/src/wagtail_headless_preview/__init__.py b/src/wagtail_headless_preview/__init__.py index ad2c746..800e7cb 100644 --- a/src/wagtail_headless_preview/__init__.py +++ b/src/wagtail_headless_preview/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 6, 0) +VERSION = (0, 7, 0) __version__ = ".".join(map(str, VERSION))