Skip to content

Commit

Permalink
Prep release 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
zerolab committed Feb 23, 2024
1 parent 9601050 commit 9be63e5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8] - 2025-02-23

### Changed

- Drop versions of Wagtail < 5.2
- Add Wagtail 6.0 support
- Add Django 5.0 support
- Drop official support for Wagtail < 5.2 (but allow installation with >= 4.1)
- Add Wagtail 6.0 and Django 5.0 to the test matrix [#62](https://github.com/torchbox/wagtail-headless-preview/pull/62) Thanks @katdom13
- Update the various GitHub Actions, and switch to ruff for linting and formatting.
- Make `get_client_root_url` overridable in both mixins [#59](https://github.com/torchbox/wagtail-headless-preview/pull/59)
Note: if you've customised it in your page models, please update your code to add the `request` parameter

## [0.7] - 2023-10-20

Expand Down
2 changes: 1 addition & 1 deletion src/wagtail_headless_preview/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 7, 0)
VERSION = (0, 8, 0)
__version__ = ".".join(map(str, VERSION))


Expand Down
8 changes: 4 additions & 4 deletions src/wagtail_headless_preview/deprecation.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
class RemovedInWagtailHeadlessPreview070Warning(DeprecationWarning):
class RemovedInWagtailHeadlessPreview090Warning(DeprecationWarning):
pass


class RemovedInWagtailHeadlessPreview080Warning(PendingDeprecationWarning):
class RemovedInWagtailHeadlessPreview010Warning(PendingDeprecationWarning):
pass


removed_in_next_version_warning = RemovedInWagtailHeadlessPreview070Warning
pending_deprecation_warning = RemovedInWagtailHeadlessPreview080Warning
removed_in_next_version_warning = RemovedInWagtailHeadlessPreview090Warning
pending_deprecation_warning = RemovedInWagtailHeadlessPreview010Warning

0 comments on commit 9be63e5

Please sign in to comment.