Skip to content

Commit

Permalink
Version 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson committed Jun 5, 2020
1 parent 737d75f commit 56eaae1
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
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 = 2.2.0
current_version = 2.3.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<num>\d+))?
Expand Down
12 changes: 12 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Version 2.3.0 (2020-6-5)
------------------------

* Fixed import of FieldDoesNotExist. (#1127)
* Added testing against Django 3.0. (#1125)
* Declared support for, and added testing against, Python 3.8. (#1138)
* Fix filterset multiple inheritance bug (#1131)
* Allowed customising default lookup expression. (#1129)
* Drop Django 2.1 and below (#1180)
* Fixed IsoDateTimeRangeFieldTests for Django 3.1
* Require tests to pass against Django `master`.

Version 2.2 (2019-7-16)
-----------------------

Expand Down
2 changes: 1 addition & 1 deletion django_filters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from . import rest_framework
del pkgutil

__version__ = '2.2.0'
__version__ = '2.3.0'


def parse_version(version):
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '2.2'
version = '2.3'
# The full version, including alpha/beta/rc tags.
release = '2.2.0'
release = '2.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
readme = f.read()
f.close()

version = '2.2.0'
version = '2.3.0'

if sys.argv[-1] == 'publish':
if os.system("pip freeze | grep wheel"):
Expand Down Expand Up @@ -56,6 +56,6 @@
zip_safe=False,
python_requires='>=3.5',
install_requires=[
'Django>=1.11',
'Django>=2.2',
],
)

0 comments on commit 56eaae1

Please sign in to comment.