From b4d53cf357b6a1b96e5df68a56a79732ad7965ba Mon Sep 17 00:00:00 2001 From: Joshua Munn Date: Tue, 16 May 2023 13:15:56 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=204.0.0=20=E2=86=92=204.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGES | 9 +++++++++ docs/conf.py | 4 ++-- setup.py | 2 +- src/wagtail_factories/__init__.py | 2 +- 5 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5ea764c..50acad9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.0.0 +current_version = 4.1.0 commit = true tag = true tag_name = {new_version} diff --git a/CHANGES b/CHANGES index a03fe57..3ae8a5b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,14 @@ Unreleased ========== + +4.1.0 +===== +- Add support Wagtail 5.0 +- Drop support for Wagtail < 4.1 + +4.0.0 +===== +- Fix ListBlock compatibility with Wagtail 4.1 - Add support for Wagtail 4.0 3.1.0 diff --git a/docs/conf.py b/docs/conf.py index c82e2d7..815b1bf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ # built documents. # # The short X.Y version. -version = '4.0.0' +version = '4.1.0' release = version # The language for content autogenerated by Sphinx. Refer to documentation @@ -142,7 +142,7 @@ # The name for this set of Sphinx documents. # " v documentation" by default. # -# html_title = 'wagtail-factories v4.0.0' +# html_title = 'wagtail-factories v4.1.0' # A shorter title for the navigation bar. Default is the same as html_title. # diff --git a/setup.py b/setup.py index 70863a4..858d2dc 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup( name="wagtail_factories", - version="4.0.0", + version="4.1.0", description="Factory boy classes for wagtail", long_description=long_description, author="Michael van Tellingen", diff --git a/src/wagtail_factories/__init__.py b/src/wagtail_factories/__init__.py index 0f91a95..4306d6e 100644 --- a/src/wagtail_factories/__init__.py +++ b/src/wagtail_factories/__init__.py @@ -1,4 +1,4 @@ from .blocks import * # noqa from .factories import * # noqa -__version__ = "4.0.0" +__version__ = "4.1.0"