Skip to content

Commit

Permalink
1.0.1 - Prevent bleach 5
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb committed Apr 8, 2022
1 parent 1b0a658 commit 94617f7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion django_bleach/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "1.0.0"
__version__ = "1.0.1"

VERSION = __version__.split(".")
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,15 @@ 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',
url='https://github.com/marksweb/django-bleach',
license='MIT',
packages=find_packages(exclude=('testproject*',)),
install_requires=[
'bleach>=1.5.0',
'bleach>=1.5.0,<5',
'Django>=1.11',
],
tests_require=[
Expand Down

0 comments on commit 94617f7

Please sign in to comment.