diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 263ca6a72e34ddae68ef458c4b33045959fe1e27..ac756ee0e25fecd359fe8c0bd7cabc981dde5f37 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 f9faab2e4da6e070f226aadef7c48f02a3f4ba24..cf8e844e2949df06fcce0e9633a3b132571ff9ad 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"]