Skip to content

Commit

Permalink
Merge pull request #306 from openedx/djanngo42
Browse files Browse the repository at this point in the history
[Django 4.2]: Fix Django 4.2 compatibility
  • Loading branch information
awais786 authored Sep 22, 2023
2 parents 65be1ce + 694c5e5 commit d2d04e5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
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")),
]

0 comments on commit d2d04e5

Please sign in to comment.