From 47155fb6132c692054973c9223fdbef479f15629 Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Wed, 15 Dec 2021 08:41:06 -0500 Subject: [PATCH] Release v0.9.1. --- CHANGELOG.rst | 6 ++++-- README.rst | 2 +- setup.cfg | 3 ++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3af0aa7..e959fef 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,10 +3,12 @@ Changelog ######### -next -==== +0.9.1 (December 15, 2021) +========================= * Support Python 3.10. (`#33 `_) +* Fixed a packaging issue where the generated wheels were empty. Contributed + by `@cordery `_. (`#35 `_) 0.9 (December 14, 2021) ======================= diff --git a/README.rst b/README.rst index 623699f..82f88c3 100644 --- a/README.rst +++ b/README.rst @@ -21,7 +21,7 @@ Requirements ============ Django Render Block supports Django 2.2, 3.1, 3.2, and 4.0 on Python 3.6, 3.7, -3.8, and 3.9 (see the Django documentation for which versions of Python are +3.8, 3.9, and 3.10 (see the Django documentation for which versions of Python are supported by particular Django versions). Examples diff --git a/setup.cfg b/setup.cfg index a599e28..da92162 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-render-block -version = 0.10dev +version = 0.9.1 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 @@ -25,6 +25,7 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 License :: OSI Approved :: ISC License (ISCL) [options]