File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ Change Log
1111
1212.. There should always be an "Unreleased" section for changes pending release.
1313
14+ [2.5.1] - 2023-09-22
15+ ~~~~~~~~~~~~~~~~~~~~
16+
17+ * Fixed issues with Django 4.2
18+
1419[2.5.0] - 2023-08-07
1520~~~~~~~~~~~~~~~~~~~~
1621
Original file line number Diff line number Diff line change 22Configuration models for Django allowing config management with auditing.
33"""
44
5- __version__ = '2.5.0 '
5+ __version__ = '2.5.1 '
Original file line number Diff line number Diff line change 22URLs for config_models.
33"""
44
5-
6- from django .conf .urls import url
5+ from django .urls import re_path
76from django .views .generic import TemplateView
87
98urlpatterns = [
10- url (r'' , TemplateView .as_view (template_name = "config_models/base.html" )),
9+ re_path (r'' , TemplateView .as_view (template_name = "config_models/base.html" )),
1110]
You can’t perform that action at this time.
0 commit comments