Skip to content
Snippets Groups Projects
Verified Commit 31270772 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Allow Django 5.0 and remove support for old versions, bump version to 1.2

parent 82ce4249
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. ...@@ -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/), 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). 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 ## 1.1.1
### Changed ### Changed
......
[tool.poetry] [tool.poetry]
name = "django-any-js" name = "django-any-js"
version = "1.1.1" version = "1.2"
description = "Include JavaScript/CSS libraries with readable template tags" description = "Include JavaScript/CSS libraries with readable template tags"
authors = ["Dominik George <dominik.george@teckids.org>"] authors = ["Dominik George <dominik.george@teckids.org>"]
maintainers = ["Dominik George <dominik.george@teckids.org>", "Jonathan Weth <dev@jonathanweth.de>"] maintainers = ["Dominik George <dominik.george@teckids.org>", "Jonathan Weth <dev@jonathanweth.de>"]
...@@ -24,8 +24,8 @@ classifiers = [ ...@@ -24,8 +24,8 @@ classifiers = [
] ]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.7" python = "^3.10"
Django = ">=2.2, <5.0" Django = ">=4.2, <6.0"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment