diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d3df2c..a80829a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,15 @@ Change Log This document records all notable changes to [django-bleach](https://github.com/marksweb/django-bleach). This project adheres to [Semantic Versioning](https://semver.org/). -[unreleased](https://github.com/marksweb/django-bleach/compare/3.0.0...master) changes +[unreleased](https://github.com/marksweb/django-bleach/compare/3.0.1...master) changes ------------------------------------------------------------------------------------- +Version 3.0.1 +============= +**11-10-2022** + +* Added support for django 4.1 + Version 3.0.0 ============= **19-05-2022** diff --git a/django_bleach/__init__.py b/django_bleach/__init__.py index 78f3eb0..656582b 100644 --- a/django_bleach/__init__.py +++ b/django_bleach/__init__.py @@ -1,3 +1,3 @@ -__version__ = "3.0.0" +__version__ = "3.0.1" VERSION = __version__.split(".") diff --git a/docs/conf.py b/docs/conf.py index df3e741..84132be 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,7 +48,7 @@ # built documents. # # The short X.Y version. -version = '3.0.0' +version = '3.0.1' # The full version, including alpha/beta/rc tags. # release = '1.0.0' diff --git a/setup.cfg b/setup.cfg index 6c2fdd5..4b11a20 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.0 +current_version = 3.0.1 commit = True tag = False diff --git a/setup.py b/setup.py index 70e80af..ba56cc4 100755 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ def find_variable(variable, *parts): packages=find_packages(exclude=('testproject*',)), install_requires=[ 'bleach[css]>=5,<6', - 'Django>=1.11', + 'Django>=3.2', ], python_requires='>=3.8', tests_require=[