diff --git a/CHANGELOG.md b/CHANGELOG.md index baf780d6..184050a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## v2.5.0 - UNRELEASED +## v2.4.1 - June 25th, 2025 + +* Add Django version to install requirements. ## v2.4.0 - June 18th, 2025 diff --git a/django_prometheus/__init__.py b/django_prometheus/__init__.py index 64fcb5fc..d94f9255 100644 --- a/django_prometheus/__init__.py +++ b/django_prometheus/__init__.py @@ -10,7 +10,7 @@ __all__ = ["middleware", "models", "pip_prometheus"] -__version__ = "2.5.0.dev0" +__version__ = "2.4.1" # Import pip_prometheus to export the pip metrics automatically. try: diff --git a/setup.py b/setup.py index e93e415c..a793a95e 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,7 @@ def get_version(): setup_requires=["pytest-runner"], options={"bdist_wheel": {"universal": "1"}}, install_requires=[ + "Django>=4.2,<6.0", "prometheus-client>=0.7", ], classifiers=[