Skip to content

Commit

Permalink
Use correct classifiers and bump to 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Wesley van Lee committed Jan 5, 2024
1 parent 94227e9 commit c627115
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CHANGELOG
=========

0.10.0 (05-01-2024)
0.10.1 (05-01-2024)
------------------
+ Added support for Wagtail 5.0, 5.1 and 5.2-LTS
+ Added support for Python 3.11
Expand Down
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@

setup(
name='wagtailformblocks',
version='0.10.0',
version='0.10.1',
description="A Wagtail module that provides content blocks to display and process user defined forms",
long_description=readme + '\n\n' + changelog,
long_description=readme,
long_description_content_type='text/x-rst',
author="Tim Leguijt",
author_email='info@leguijtict.nl',
url='https://github.com/LUKKIEN/wagtailformblocks',
Expand All @@ -58,16 +59,14 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.11',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Wagtail',
'Framework :: Wagtail :: 4.2',
'Framework :: Wagtail :: 5.0',
'Framework :: Wagtail :: 5.1',
'Framework :: Wagtail :: 5.2',
'Framework :: Wagtail :: 4',
'Framework :: Wagtail :: 5',
],
extras_require={
'testing': test_require,
Expand Down
2 changes: 1 addition & 1 deletion wagtailformblocks/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.10.0'
__version__ = '0.10.1'

0 comments on commit c627115

Please sign in to comment.