Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version: 4.2.0 → 4.2.1 #93

Merged
merged 1 commit into from
May 26, 2024
Merged
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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.2.0
current_version = 4.2.1
commit = true
tag = true
tag_name = {new_version}
Expand Down
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
Unreleased
==========

4.2.1
=====
- Update setup.py for PyPI compatibility

4.2.0
=====
- Update for Wagtail > 5.2
- Drop support for Django < 4.2
- Drop support for Wagtail < 5.2
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -140,7 +140,7 @@
# The name for this set of Sphinx documents.
# "<project> v<release> 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.
#
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/",
Expand Down
2 changes: 1 addition & 1 deletion src/wagtail_factories/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .blocks import * # noqa
from .factories import * # noqa

__version__ = "4.2.0"
__version__ = "4.2.1"