Skip to content

Commit 1b6a0e7

Browse files
committed
0.15.0 release
1 parent e7575d1 commit 1b6a0e7

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGES.rst

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

4+
Version 0.15.0 [2019-12-09]
5+
---------------------------
6+
7+
- Dropped Python 3.4 support
8+
- `#190 <https://github.com/djangonauts/django-rest-framework-gis/pull/190>`_:
9+
Added django 2.2 on test matrix
10+
- `#199 <https://github.com/djangonauts/django-rest-framework-gis/pull/199>`_:
11+
Dropped Django 2.0 support
12+
- `#195 <https://github.com/djangonauts/django-rest-framework-gis/pull/195>`_:
13+
Updated the way that ``to_representation`` removes already processed
14+
- `#197 <https://github.com/djangonauts/django-rest-framework-gis/pull/197>`_:
15+
Removed six dependency
16+
- `#202 <https://github.com/djangonauts/django-rest-framework-gis/pull/202>`_:
17+
Updated DRF to 3.10, removed support for previous DRF versions
18+
- `#200 <https://github.com/djangonauts/django-rest-framework-gis/pull/200>`_:
19+
Added Django 3.0 and Python 3.8 support
20+
421
Version 0.14.0 [2018-12-02]
522
---------------------------
623

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Compatibility with DRF, Django and Python
3939

4040
=============== ============================ ==================== ==================================
4141
DRF-gis version DRF version Django version Python version
42-
**0.15.x** **3.3** to **3.9** **1.11** to **3.0** **3.4** to **3.8**
42+
**0.15.x** **3.10** **1.11, 2.2 to 3.0** **3.5** to **3.8**
4343
**0.14.x** **3.3** to **3.9** **1.11** to **2.1** **3.4** to **3.7**
4444
**0.13.x** **3.3** to **3.8** **1.11** to **2.0** **2.7** to **3.6**
4545
**0.12.x** **3.1** to **3.7** **1.11** to **2.0** **2.7** to **3.6**
@@ -160,7 +160,7 @@ In contrast, the ``GeoModelSerializer`` will output:
160160
}
161161
162162
**Note:** The DRF model serializer will also give the same output as above, provided
163-
that you are using ``ver>=0.9.3``, and you have included ``rest_framework_gis`` in
163+
that you are using ``ver>=0.9.3``, and you have included ``rest_framework_gis`` in
164164
``settings.INSTALLED_APPS``.
165165

166166
GeoFeatureModelSerializer

rest_framework_gis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (0, 14, 0, 'final')
1+
VERSION = (0, 15, 0, 'final')
22
__version__ = VERSION # alias
33

44

0 commit comments

Comments
 (0)