From 31270772511ad529413769d6ada717be84a0860c Mon Sep 17 00:00:00 2001 From: Jonathan Weth <git@jonathanweth.de> Date: Tue, 5 Dec 2023 00:10:35 +0100 Subject: [PATCH] Allow Django 5.0 and remove support for old versions, bump version to 1.2 --- CHANGELOG.rst | 11 +++++++++++ pyproject.toml | 6 +++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e79f193..3876cf7 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 02b6e8b..87e8f5d 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] -- GitLab