Skip to content

Commit 2d2036b

Browse files
prepare 0.3.3
1 parent 0854984 commit 2d2036b

7 files changed

Lines changed: 20 additions & 6 deletions

File tree

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
0.3.3
5+
-----
6+
2019-04-02
7+
8+
- Tested against Django 2.2.
9+
410
0.3.2
511
-----
612
2019-04-01

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Full documentation on `Read the docs`_.
1515
Requirements
1616
============
1717
* Python 2.7, 3.5, 3.6, 3.7
18-
* Django 1.11, 2.0, 2.1
18+
* Django 1.11, 2.0, 2.1, 2.2
1919

2020
Installation
2121
============

django_mongoengine_filter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .filterset import FilterSet
44
from .filters import *
55

6-
VERSION = (0, 3, 2)
6+
VERSION = (0, 3, 3)
77

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

requirements/django_2_1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
-r test.txt
44
#-r code_style.txt
55

6-
Django==2.1.7
6+
Django>=2.1,<2.2
77

requirements/django_2_2.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-r common.txt
2+
-r debug.txt
3+
-r test.txt
4+
#-r code_style.txt
5+
6+
Django>=2.2,<2.3
7+

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="django-mongoengine-filter",
9-
version="0.3.2",
9+
version="0.3.3",
1010
description=(
1111
"django-mongoengine-filter is a reusable Django application inspired "
1212
"from django-filter for allowing mongoengine users to filter querysets "
@@ -18,7 +18,7 @@
1818
url="https://github.com/barseghyanartur/django-mongoengine-filter",
1919
packages=find_packages(exclude=["tests"]),
2020
package_data={"django_mongoengine_filter": ["locale/*/LC_MESSAGES/*"]},
21-
license="BSD",
21+
license="GPL 2.0/LGPL 2.1",
2222
classifiers=[
2323
"Development Status :: 4 - Beta",
2424
"Environment :: Web Environment",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py{27,35,36,37}-{django111}
4-
py{35,36,37}-{django20,django21}
4+
py{35,36,37}-{django20,django21,django22}
55

66
[testenv]
77
envlogdir =
@@ -12,6 +12,7 @@ deps =
1212
django111: -r{toxinidir}/requirements/django_1_11.txt
1313
django20: -r{toxinidir}/requirements/django_2_0.txt
1414
django21: -r{toxinidir}/requirements/django_2_1.txt
15+
django22: -r{toxinidir}/requirements/django_2_2.txt
1516

1617
commands =
1718
{envpython} runtests.py

0 commit comments

Comments
 (0)