Skip to content

Commit

Permalink
0.15.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Dec 9, 2019
1 parent e7575d1 commit 1b6a0e7
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Changelog
=========

Version 0.15.0 [2019-12-09]
---------------------------

- Dropped Python 3.4 support
- `#190 <https://github.com/djangonauts/django-rest-framework-gis/pull/190>`_:
Added django 2.2 on test matrix
- `#199 <https://github.com/djangonauts/django-rest-framework-gis/pull/199>`_:
Dropped Django 2.0 support
- `#195 <https://github.com/djangonauts/django-rest-framework-gis/pull/195>`_:
Updated the way that ``to_representation`` removes already processed
- `#197 <https://github.com/djangonauts/django-rest-framework-gis/pull/197>`_:
Removed six dependency
- `#202 <https://github.com/djangonauts/django-rest-framework-gis/pull/202>`_:
Updated DRF to 3.10, removed support for previous DRF versions
- `#200 <https://github.com/djangonauts/django-rest-framework-gis/pull/200>`_:
Added Django 3.0 and Python 3.8 support

Version 0.14.0 [2018-12-02]
---------------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Compatibility with DRF, Django and Python

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

GeoFeatureModelSerializer
Expand Down
2 changes: 1 addition & 1 deletion rest_framework_gis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 14, 0, 'final')
VERSION = (0, 15, 0, 'final')
__version__ = VERSION # alias


Expand Down

0 comments on commit 1b6a0e7

Please sign in to comment.