Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Django 4.2]: Fix Django 4.2 compatibility #306

Merged
merged 2 commits into from
Sep 22, 2023
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
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ Change Log

.. There should always be an "Unreleased" section for changes pending release.

[2.5.1] - 2023-09-22
~~~~~~~~~~~~~~~~~~~~

* Fixed issues with Django 4.2

[2.5.0] - 2023-08-07
~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion config_models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Configuration models for Django allowing config management with auditing.
"""

__version__ = '2.5.0'
__version__ = '2.5.1'
5 changes: 2 additions & 3 deletions config_models/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
URLs for config_models.
"""


from django.conf.urls import url
from django.urls import re_path
from django.views.generic import TemplateView

urlpatterns = [
url(r'', TemplateView.as_view(template_name="config_models/base.html")),
re_path(r'', TemplateView.as_view(template_name="config_models/base.html")),
]