diff --git a/CHANGELOG.md b/CHANGELOG.md index c49c3fc..d21f019 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/1.0.0...master) changes +[unreleased](https://github.com/marksweb/django-bleach/compare/1.0.1...master) changes ------------------------------------------------------------------------------------- +Version 1.0.1 +============= +###### 08-04-2022 + +* cap bleach version at ``<5`` [#51](https://github.com/marksweb/django-bleach/issues/51) + Version 1.0.0 ============= ###### 13-11-2021 diff --git a/django_bleach/__init__.py b/django_bleach/__init__.py index b337cb4..bd0db7c 100644 --- a/django_bleach/__init__.py +++ b/django_bleach/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.0.0" +__version__ = "1.0.1" VERSION = __version__.split(".") diff --git a/setup.py b/setup.py index 220beaa..20fab69 100755 --- a/setup.py +++ b/setup.py @@ -60,6 +60,7 @@ def find_variable(variable, *parts): version=version, description='Easily use bleach with Django models and templates', long_description=read('README.rst'), + long_description_content_type='text/x-rst', author='Tim Heap', maintainer='Mark Walker', maintainer_email='theshow+django-bleach@gmail.com', @@ -67,7 +68,7 @@ def find_variable(variable, *parts): license='MIT', packages=find_packages(exclude=('testproject*',)), install_requires=[ - 'bleach>=1.5.0', + 'bleach>=1.5.0,<5', 'Django>=1.11', ], tests_require=[