Skip to content

Commit

Permalink
Release 0.5.0 to support Wagtail 6.0 and 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cnk committed Dec 10, 2024
1 parent 6967143 commit 945f7d1
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 16 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [unreleased] - YYYY-MM-DD

## [0.5.0] - 2024-12-10

- Add support for Python 3.12, Django 5.0, Wagtail 6.1 and Psycopg 3 by _Joren Hammudoglu_

## [0.4.0] - 2024-12-09
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,17 @@ This is the legacy rich text editor for the Wagtail CMS. Based on [Hallo.js](htt

## Supported Versions

- Python 3.8, 3.9, 3.10, 3.11, 3.12
- Python 3.9, 3.10, 3.11, 3.12
- Django 3.2, 4.0, 4.1, 4.2, 5.0
- Wagtail 4.0, 4.1, 4.2, 5.0, 5.1, 5.2, 6.0, 6.1

Please note that only Django >=4.2 are still supported versions of Django. And only Wagtail 5.2 and
6.3 are still supported as of December 20204. But the wagtail-hallo package should work on the wider
range of versions mentioned above.

If you need support for Wagtail 3.0 while you are upgrading, please use wagtail-hallo 0.3.0.
If you need support for Wagtail 3.0 while you are upgrading, please use wagtail-hallo 0.2.0. For
Wagtail 4, use wagtail-hallo 0.3.0. For Wagtail 5, use wagtail-hallo 0.4.0. For Wagtail 6.0 and 6.1,
use wagtail-hallo 0.5.0

## Installing the Hallo Editor

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wagtail-hallo",
"version": "0.4.0",
"version": "0.5.0",
"private": true,
"description": "",
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -44,7 +43,7 @@
"Framework :: Wagtail :: 6",
],
install_requires=[
"Django>=3.2,<6.0",
"Django>=4.2,<6.0",
"Wagtail>=4.0,<7.0",
],
extras_require={
Expand Down
9 changes: 1 addition & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,18 @@ install_command = pip install -e ".[testing]" -U {opts} {packages}
commands = coverage run testmanage.py test --deprecation all

basepython =
python3.8: python3.8
python3.9: python3.9
python3.10: python3.10
python3.11: python3.11
python3.12: python3.12

deps =
coverage

django3.2: Django>=3.2,<3.3
django4.1: Django>=4.1,<4.2
django4.2: Django>=4.2,<5.0
django5.0: Django>=5.0,<5.1
djangomain: git+https://github.com/django/django.git@main#egg=Django

wagtail4.0: wagtail>=4.0,<4.1
wagtail4.1: wagtail>=4.1,<4.2
wagtail4.2: wagtail>=4.2,<4.3
wagtail5.0: wagtail>=5.0,<5.1
wagtail5.1: wagtail>=5.1,<5.2
wagtail5.2: wagtail>=5.2,<5.3
wagtail6.0: wagtail>=6.0,<6.1
wagtail6.1: wagtail>=6.1,<6.2
Expand Down
2 changes: 1 addition & 1 deletion wagtail_hallo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ def get_complete_version(version):
return version


VERSION = (0, 4, 0)
VERSION = (0, 5, 0)

__version__ = ".".join(map(str, VERSION))

0 comments on commit 945f7d1

Please sign in to comment.