diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index e79f1930e560f385f64701aaf137b90ebea830c2..3876cf78302b95742d80b7e76687e3eb006998df 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## 1.2
+
+### Changed
+
+- Allow Django 5.0
+
+### Removed
+
+- Remove support for Django versions below 4.2
+- Remove support for Python versions below 3.10
+
 ## 1.1.1
 
 ### Changed
diff --git a/pyproject.toml b/pyproject.toml
index 02b6e8b705d213388c0358279f8c523496159647..87e8f5d4bd4713f4b6820cad52a83c5a7782952b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "django-any-js"
-version = "1.1.1"
+version = "1.2"
 description = "Include JavaScript/CSS libraries with readable template tags"
 authors = ["Dominik George <dominik.george@teckids.org>"]
 maintainers = ["Dominik George <dominik.george@teckids.org>", "Jonathan Weth <dev@jonathanweth.de>"]
@@ -24,8 +24,8 @@ classifiers = [
 ]
 
 [tool.poetry.dependencies]
-python = "^3.7"
-Django = ">=2.2, <5.0"
+python = "^3.10"
+Django = ">=4.2, <6.0"
 
 [tool.poetry.dev-dependencies]