Skip to content

Commit

Permalink
HTML sanitizer 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Feb 19, 2019
1 parent d1abac0 commit c914481
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Change log
`Next version`_
===============


`1.7`_ (2019-02-19)
====================

- Added a system check which validates sanitizer configurations early
when using Django.
- Fixed an edge case where passing in an empty allowed tags list would
Expand Down Expand Up @@ -103,4 +107,5 @@ Change log
.. _1.4: https://github.com/matthiask/html-sanitizer/compare/1.3...1.4
.. _1.5: https://github.com/matthiask/html-sanitizer/compare/1.4...1.5
.. _1.6: https://github.com/matthiask/html-sanitizer/compare/1.5...1.6
.. _Next version: https://github.com/matthiask/html-sanitizer/compare/1.6...master
.. _1.7: https://github.com/matthiask/html-sanitizer/compare/1.6...1.7
.. _Next version: https://github.com/matthiask/html-sanitizer/compare/1.7...master
2 changes: 1 addition & 1 deletion html_sanitizer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import unicode_literals


VERSION = (1, 6, 4)
VERSION = (1, 7, 0)
__version__ = ".".join(map(str, VERSION))


Expand Down

0 comments on commit c914481

Please sign in to comment.