diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 59b7a78..640f683 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,7 @@ Change Log in this file. It adheres to the structure of http://keepachangelog.com/ , but in reStructuredText instead of Markdown (for ease of incorporation into Sphinx documentation and the PyPI description). - + This project adheres to Semantic Versioning (http://semver.org/). .. There should always be an "Unreleased" section for changes pending release. @@ -14,6 +14,11 @@ Change Log Unreleased ~~~~~~~~~~ +[0.6.0] - 2024-04-22 +~~~~~~~~~~~~~~~~~~~~ + +* Test and declare Python 3.11 and 3.12 compatibility. + [0.5.0] - 2023-08-01 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -21,7 +26,7 @@ Unreleased deprecated. See https://github.com/openedx/edx-sphinx-theme/issues/184 for more details. * Added supportt for Django 4.2 - + [0.4.0] - 2022-01-20 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 7709345..08edab9 100644 --- a/setup.py +++ b/setup.py @@ -122,12 +122,13 @@ def is_requirement(line): classifiers=[ 'Development Status :: 3 - Alpha', 'Framework :: Django', - 'Framework :: Django :: 3.2', - 'Framework :: Django :: 4.0', + 'Framework :: Django :: 4.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Natural Language :: English', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], ) diff --git a/xss_utils/__init__.py b/xss_utils/__init__.py index 4f9065c..af342e3 100644 --- a/xss_utils/__init__.py +++ b/xss_utils/__init__.py @@ -1,4 +1,4 @@ """ Utilities to prevent possible XSS attacks on Django/Mako templates.. """ -__version__ = '0.5.1' +__version__ = '0.6.0'