diff --git a/CHANGES.rst b/CHANGES.rst index 8b93f875..3f672d02 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,23 @@ Changelog ========= +Version 0.15.0 [2019-12-09] +--------------------------- + +- Dropped Python 3.4 support +- `#190 `_: + Added django 2.2 on test matrix +- `#199 `_: + Dropped Django 2.0 support +- `#195 `_: + Updated the way that ``to_representation`` removes already processed +- `#197 `_: + Removed six dependency +- `#202 `_: + Updated DRF to 3.10, removed support for previous DRF versions +- `#200 `_: + Added Django 3.0 and Python 3.8 support + Version 0.14.0 [2018-12-02] --------------------------- diff --git a/README.rst b/README.rst index 5ef34ecb..7e123a80 100644 --- a/README.rst +++ b/README.rst @@ -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** @@ -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 diff --git a/rest_framework_gis/__init__.py b/rest_framework_gis/__init__.py index 592c4904..8340c472 100644 --- a/rest_framework_gis/__init__.py +++ b/rest_framework_gis/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 14, 0, 'final') +VERSION = (0, 15, 0, 'final') __version__ = VERSION # alias