Skip to content

Commit 0b748af

Browse files
committed
v2.10.0
1 parent 4112c74 commit 0b748af

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

CHANGES.adoc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
Changelog
22
=========
33

4+
Version 2.10.0
5+
--------------
6+
7+
_Released December 10th, 2021_
8+
9+
- Fix usage of `unittest` to be ready for Python 3.11 (#288).
10+
- Fix `default_app_config` deprecation warning for Django 3.2 (#289).
11+
- Replace Travis with GitHub Actions, dropping `ppc64le` arch tests (#290).
12+
* Added Python 3.10 to tests (Django supports it if >=3.2.9).
13+
- Run pyupgrade, remove compatibility code (#291).
14+
- Add support for Django 4.0, with more old-code cleanup (#292).
15+
* Remove use of `django.conf.urls.url` in test app (gone in Django 4.0).
16+
* Set `DEFAULT_AUTO_FIELD` to avoid warnings in test app.
17+
* Remove `django_jinja.contrib._pipeline` package, which was deprecated in 2015.
18+
* Drop formal Django 3.0 and 3.1 support.
19+
** Projects using these versions should still function until support for 2.2 is dropped.
20+
- Django 2.2 and Python 3.6 will likely be dropped in the next non-patch release.
21+
22+
423
Version 2.9.1
524
-------------
625

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.9.1
3+
2.10.0
44
:toc: left
55
:!numbered:
66
:source-highlighter: pygments
@@ -82,7 +82,7 @@ If you are using older versions of Django or Python, you need an older version o
8282
|3.6, 3.7, 3.8, 3.9
8383
|2.2, 3.0, 3.1, 3.2
8484

85-
|==dev
85+
|>=2.10.0
8686
|3.6, 3.7, 3.8, 3.9, 3.10
8787
|2.2, 3.2, 4.0
8888
|===

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.9.1",
7+
version = "2.10.0",
88
description = "Jinja2 templating language integrated in Django.",
99
long_description = open("README.rst").read(),
1010
long_description_content_type='text/x-rst',

0 commit comments

Comments
 (0)