Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ Changelog
Unreleased
----------

2.3.0 (2026-04-16)
------------------
* Add Wagtail 7.0, 7.1, 7.2, and 7.3 support.
* Update dependencies:
- wagtail>=5.2,<8.0 (was >=5.2,<7.0)
- django-el-pagination>=4.0.0,<5.0 (was ==4.0.0)
- django-taggit>=5.0,<7.0 (was >=5.0,<6.2)
- wagtail-markdown>=0.11.1,<0.14.0 (was ==0.11.1)
* Remove Draftail rich text hooks (features now built-in to Wagtail)
* Add Python 3.12 support
* Add Wagtail 7 framework classifier

2.2.0 (2025-04-07)
------------------
Expand Down
2 changes: 1 addition & 1 deletion puput/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = "Marc Tudurí"
__email__ = "marctc@gmail.com"
__version__ = "2.2.0"
__version__ = "2.3.0"

PUPUT_APPS = (
# Wagtail apps
Expand Down
56 changes: 0 additions & 56 deletions puput/wagtail_hooks.py

This file was deleted.

9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ def get_metadata(package, field):
description='A Django blog app implemented in Wagtail.',
long_description=codecs.open(os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8').read(),
install_requires=[
'wagtail>=5.2,<7.0',
'django-el-pagination==4.0.0',
'django-taggit>=5.0,<6.2',
'wagtail-markdown==0.11.1'
'wagtail>=5.2,<8.0',
'django-el-pagination>=4.0.0,<5.0',
'django-taggit>=5.0,<7.0',
'wagtail-markdown>=0.11.1,<0.14.0'
],
url='http://github.com/APSL/puput',
author=get_metadata('puput', 'author'),
Expand All @@ -42,6 +42,7 @@ def get_metadata(package, field):
'Framework :: Wagtail',
'Framework :: Wagtail :: 5',
'Framework :: Wagtail :: 6',
'Framework :: Wagtail :: 7',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
Expand Down