From 9120f2f3f0d0dea0e6a4415403a25d0eefe8d897 Mon Sep 17 00:00:00 2001
From: Jonathan Weth <git@jonathanweth.de>
Date: Mon, 4 Dec 2023 23:37:39 +0100
Subject: [PATCH] Allow Django 5.0, drop support for Django <4.2 and bump
 version to 0.6

---
 CHANGELOG.rst  | 13 +++++++++++++
 pyproject.toml |  6 +++---
 2 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 263ca6a..ac756ee 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -7,6 +7,19 @@ The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
 and this project adheres to `Semantic
 Versioning <http://semver.org/>`__.
 
+0.6
+---
+
+Changed
+~~~~~~~
+
+* Allow Django 5.0
+
+Removed
+~~~~~~~
+
+* Drop support for Django versions <4.2
+
 0.5.3
 -----
 
diff --git a/pyproject.toml b/pyproject.toml
index f9faab2..cf8e844 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "calendarweek"
-version = "0.5.3"
+version = "0.6"
 description = "Utilities for working with calendar weeks in Python and Django"
 authors = ["Dominik George <nik@naturalnet.de>", "Jonathan Weth <git@jonathanweth.de>"]
 license = "Apache-2.0"
@@ -20,8 +20,8 @@ classifiers = [
 ]
 
 [tool.poetry.dependencies]
-python = "^3.7"
-Django = {version = ">=2.2, <5.0", optional = true}
+python = "^3.10"
+Django = {version = ">=4.2, <6.0", optional = true}
 
 [tool.poetry.extras]
 django = ["Django"]
-- 
GitLab