diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e6adf20..830b528 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,8 +3,8 @@ Changelog ######### -next -==== +0.9.2 (October 14, 2022) +======================== Maintenance ----------- @@ -15,6 +15,9 @@ Maintenance and `flake8 `_, and `pyupgrade `_. (`#38 `_, `#39 `_) +* Update to include and run tests for Django 4.1. Contributed by + `Jack Linke `_. + (`#41 `_) 0.9.1 (December 15, 2021) ========================= diff --git a/README.rst b/README.rst index 7c04287..44c26da 100644 --- a/README.rst +++ b/README.rst @@ -23,7 +23,7 @@ Features Requirements ============ -Django Render Block supports Django 2.2, 3.1, 3.2, and 4.0 on Python 3.7, 3.8, +Django Render Block supports Django 2.2, 3.1, 3.2, 4.0, and 4.1 on Python 3.7, 3.8, 3.9, and 3.10 (see the Django documentation for which versions of Python are supported by particular Django versions). diff --git a/setup.cfg b/setup.cfg index e33271c..8767db3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-render-block -version = 0.9.1 +version = 0.9.2 description = Render a particular block from a template to a string. long_description = file: README.rst, CHANGELOG.rst long_description_content_type = text/x-rst @@ -19,6 +19,7 @@ classifiers = Framework :: Django :: 3.1 Framework :: Django :: 3.2 Framework :: Django :: 4.0 + Framework :: Django :: 4.1 Programming Language :: Python Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 diff --git a/tox.ini b/tox.ini index 25710fe..4ddf755 100644 --- a/tox.ini +++ b/tox.ini @@ -9,7 +9,7 @@ envlist = # Django 3.2.9 added support for Python 3.10. py310-django32, # Django 4.0 drops support for Python 3.7. - py{38,39,310}-django{40,main} + py{38,39,310}-django{40,41,main} isolated_build = True skip_missing_interpreters = True @@ -22,4 +22,5 @@ deps = django31: Django>=3.1,<3.2 django32: Django>=3.2,<3.3 django40: Django>=4.0,<4.1 + django41: Django>=4.1,<4.2 djangomain: https://codeload.github.com/django/django/zip/main