Skip to content

Commit e23e0c9

Browse files
wizpig64auvipy
authored andcommitted
v2.7.1
1 parent 84941ab commit e23e0c9

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

CHANGES.adoc

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
Changelog
22
=========
33

4-
Unreleased
5-
----------
4+
Version 2.7.1
5+
-------------
66

7-
- Fixed makemessages command not reading Django template `{% trans %}` tags correctly (#272).
8-
- Fixed `{% cache %}` tag to allow None timeout to cache forever, which Django allowed since in 2.0.
9-
- Added testing against Django 3.2b1.
7+
- Fixed `makemessages` command, which in 2.7.0 could not detect `{% trans %}` tags in Django templates (#272).
8+
- Fixed `{% cache %}` tag to allow a timeout of `None` (to cache forever), which Django's tag added in 2.0 (#274).
9+
- Fixed README not displaying in project description at PyPI (#276).
10+
- Added Django 3.2 support.
1011
1112
1213
Version 2.7.0

doc/content.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= django-jinja - jinja2 backend for Django
22
Andrey Antukh, <niwi@niwi.be>
3-
2.7.0
3+
2.7.1
44
:toc: left
55
:!numbered:
66
:source-highlighter: pygments
@@ -76,7 +76,7 @@ If you are using older versions of Django or Python, you need an older version o
7676

7777
|>=2.7.0
7878
|3.5 (django 2.2 only), 3.6, 3.7, 3.8, 3.9
79-
|2.2, 3.0, 3.1, 3.2b1
79+
|2.2, 3.0, 3.1, 3.2
8080
|===
8181

8282

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name = "django-jinja",
7-
version = "2.7.0",
7+
version = "2.7.1",
88
description = "Jinja2 templating language integrated in Django.",
99
long_description = open("README.rst").read(),
1010
long_description_content_type='text/x-rst',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ deps=
1212
django22: Django>=2.2,<3.0
1313
django30: Django>=3.0,<3.1
1414
django31: Django>=3.1,<3.2
15-
django32: Django==3.2b1
15+
django32: Django>=3.2,<4.0
1616
jinja2
1717
django-pipeline<1.6
1818
pytz

0 commit comments

Comments
 (0)