Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down