Skip to content

Commit ed5b2b5

Browse files
Prepare 0.4.1
1 parent 8adc1f7 commit ed5b2b5

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ are used for versioning (schema follows below):
1515
0.3.4 to 0.4).
1616
- All backwards incompatible changes are mentioned in this document.
1717

18+
0.4.1
19+
-----
20+
2023-02-23
21+
22+
- Fix issue with adding ``help_text``.
23+
1824
0.4.0
1925
-----
2026
2022-12-24

django_mongoengine_filter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .filters import * # noqa
22
from .filterset import FilterSet
33

4-
VERSION = (0, 4, 0)
4+
VERSION = (0, 4, 1)
55

66
__title__ = "django-mongoengine-filter"
77
__version__ = ".".join([str(_i) for _i in VERSION])

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setup(
2222
name="django-mongoengine-filter",
23-
version="0.4.0",
23+
version="0.4.1",
2424
description=(
2525
"django-mongoengine-filter is a reusable Django application inspired "
2626
"from django-filter for allowing mongoengine users to filter querysets "

0 commit comments

Comments
 (0)