diff --git a/CHANGELOG.md b/CHANGELOG.md index 4341352..a0448c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [0.14.0] - 2025-09-21 + - Big thanks to @RobKuipers - most of the improvements in this release were his contributions + - Fixed bug where `GeoLocationField` was always marked as "changed" + - Allow comparing `GeoPoint` object with string lat,lng + - Removed jQuery dependency, now straight javascript + - Added: Django 5.2 support + - Drop CI checks for Python 3.7 & 3.8 + - Improved styling in Django admin for newer versions + - Updated to Google Maps AdvancedMarkerElement + - Load Google Maps Async + ## [0.13.0] - 2022-03-22 - Added: Django 4.0 support - Added: Python 3.10 support diff --git a/setup.py b/setup.py index 4027e0a..fe85bc4 100644 --- a/setup.py +++ b/setup.py @@ -12,21 +12,23 @@ "Framework :: Django :: 2.2", "Framework :: Django :: 3.2", "Framework :: Django :: 4.0", + "Framework :: Django :: 5.0", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Application Frameworks", ] setup( name="django-google-maps", - version='0.13.0', + version='0.14.0', author="Aaron Madison", author_email="aaron.l.madison@gmail.com", description="Plugs google maps V3 api into Django admin.",