From e6af904dff4aac1f7b4b3cb248d31fb0ef56387f Mon Sep 17 00:00:00 2001 From: Joshua Munn Date: Sun, 26 May 2024 12:14:30 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=204.2.0=20=E2=86=92=204.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/conf.py | 4 ++-- setup.py | 3 ++- src/wagtail_factories/__init__.py | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 29a6cfa..d3080b8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.2.0 +current_version = 4.2.1 commit = true tag = true tag_name = {new_version} diff --git a/docs/conf.py b/docs/conf.py index 7711e4b..f2f0826 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,7 +57,7 @@ # built documents. # # The short X.Y version. -version = "4.2.0" +version = "4.2.1" release = version # The language for content autogenerated by Sphinx. Refer to documentation @@ -140,7 +140,7 @@ # The name for this set of Sphinx documents. # " v documentation" by default. # -# html_title = 'wagtail-factories v4.2.0' +# html_title = 'wagtail-factories v4.2.1' # A shorter title for the navigation bar. Default is the same as html_title. # diff --git a/setup.py b/setup.py index b198749..d540812 100755 --- a/setup.py +++ b/setup.py @@ -26,9 +26,10 @@ setup( name="wagtail_factories", - version="4.2.0", + version="4.2.1", description="Factory boy classes for wagtail", long_description=long_description, + long_description_content_type="text/markdown", author="Michael van Tellingen", author_email="michaelvantellingen@gmail.com", url="https://github.com/wagtail/wagtail-factories/", diff --git a/src/wagtail_factories/__init__.py b/src/wagtail_factories/__init__.py index 29b42f2..17f1886 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.2.0" +__version__ = "4.2.1"