Skip to content

Commit

Permalink
Bump to 2.1 for Django 4.1/4.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
vdboor committed Oct 16, 2023
1 parent 72f8434 commit e392104
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

Version 2.1 (2023-10-16)
------------------------

* Added Django 4.1/4.2 support

Version 2.0 (2021-11-16)
------------------------

Expand Down
4 changes: 2 additions & 2 deletions template_analyzer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .djangoanalyzer import get_node_instances

VERSION = (2, 0, 0)
VERSION = (2, 1, 0)

# following PEP 440
__version__ = "2.0"
__version__ = "2.1"
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
[tox]
envlist=
py36-django{22,31,32},
py38-django{22,31,32},
py310-django{42}
coverage,

[testenv]
deps =
django22: Django ~= 2.2
django31: Django ~= 3.1
django32: Django ~= 3.2
django42: Django ~= 4.2
django-dev: https://github.com/django/django/tarball/main
commands=
python runtests.py
Expand Down

0 comments on commit e392104

Please sign in to comment.