diff --git a/CHANGES.rst b/CHANGES.rst index 42b4c597..7c5c3f94 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,38 @@ Changelog ========= +Version 1.1.0 [2024-08-17] +-------------------------- + +Features +~~~~~~~~ + +- Allowed ``GeoFeatureModelSerializer`` to support models without geometry + field. + +Changes +~~~~~~~ + +**Dependencies:** + +- Bumped ``django-filters~=23.5``. +- Added Django ``4.2``, ``5.0``, ``5.1`` to automated testing build. +- Dropped several EOL dependencies from automated testing build: + + - Python ``3.6`` and ``3.7``. + - Django ``2.2``, ``3.0``, ``3.1`` and ``4.0``. + - ``djangorestframework < 3.12``. + + The library may continue working with the dependencies listed above, but + it's not guaranteed. + + Upgrading to more recent dependencies is **highly recommended**. + +Bugfixes +~~~~~~~~ + +- Fixed schema generation for ``DistanceToPointOrderingFilter``. + Version 1.0.0 [2022-05-09] -------------------------- diff --git a/requirements-test.txt b/requirements-test.txt index dcd01623..c9a10890 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -2,4 +2,4 @@ psycopg2~=2.9.9 django-filter>=2.0 contexttimer # QA checks -openwisp-utils[qa] @ https://github.com/openwisp/openwisp-utils/tarball/master +openwisp-utils[qa]~=1.1.0 diff --git a/rest_framework_gis/__init__.py b/rest_framework_gis/__init__.py index 9a52eaa1..0ce2beb6 100644 --- a/rest_framework_gis/__init__.py +++ b/rest_framework_gis/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 0, 0, 'final') +VERSION = (1, 1, 0, 'final') __version__ = VERSION # alias