Skip to content

Commit 90581a5

Browse files
prepare 0.2.10
1 parent 96a3db9 commit 90581a5

35 files changed

+87
-55
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*.py,cover
1212
.idea/
1313
/vagrant/.vagrant/
14+
.pytest_cache/
1415

1516
MANIFEST.in~
1617
MIND_BUCKET.rst

.hgignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ syntax: regexp
1111
\.py,cover
1212
\.idea/
1313
^vagrant/\.vagrant
14+
\.pytest_cache/
1415

1516
^MANIFEST\.in~
1617
^tmp/

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@ 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.2.10
19+
------
20+
2019-04-12
21+
22+
- Tested against Django 2.1 and Django 2.2.
23+
- Tested against Python 3.7.
24+
- Dropping support for Python 3.4.
25+
- Upgrade test suite.
26+
- Temporary remove PyPy from tox (because of failing tests).
27+
1828
0.2.9
1929
-----
2030
2018-02-03

LICENSE_GPL2.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ the "copyright" line and a pointer to where the full notice is found.
292292

293293
django-rest-framework-tricks - Collection of various tricks for Django REST
294294
framework.
295-
Copyright (C) 2017-2018 Artur Barseghyan
295+
Copyright (C) 2017-2019 Artur Barseghyan
296296

297297
This program is free software; you can redistribute it and/or modify
298298
it under the terms of the GNU General Public License as published by

LICENSE_LGPL_2.1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ convey the exclusion of warranty; and each file should have at least the
472472

473473
django-rest-framework-tricks - Collection of various tricks for Django REST
474474
framework.
475-
Copyright (C) 2017-2018 Artur Barseghyan
475+
Copyright (C) 2017-2019 Artur Barseghyan
476476

477477
This library is free software; you can redistribute it and/or
478478
modify it under the terms of the GNU Lesser General Public

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Collection of various tricks for
77
Prerequisites
88
=============
99

10-
- Django 1.8, 1.9, 1.10, 1.11 and 2.0.
11-
- Python 2.7, 3.4, 3.5, 3.6
10+
- Django 1.8, 1.9, 1.10, 1.11, 2.0, 2.1 and 2.2.
11+
- Python 2.7, 3.4, 3.5, 3.6, 3.7
1212

1313
Dependencies
1414
============

examples/requirements/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-r django_1_10.txt
1+
-r django_2_2.txt

examples/requirements/common.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mysqlclient
2-
psycopg2
1+
#mysqlclient
2+
#psycopg2
33
python-memcached==1.58
44
pytz
55
six>=1.9

examples/requirements/django_1_10.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ Django>=1.10,<1.11
55
django-debug-toolbar==1.5
66
django-debug-toolbar-force==0.1.1
77
django-ormex==0.2
8-
drf-extensions==0.3.1
98
sqlparse==0.2.2

examples/requirements/django_1_11.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ Django>=1.11,<2.0
55
django-debug-toolbar==1.5
66
django-debug-toolbar-force==0.1.1
77
django-ormex==0.2
8-
drf-extensions==0.3.1
98
sqlparse==0.2.2

0 commit comments

Comments
 (0)