Skip to content

Commit

Permalink
Version 1.4.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsocol committed Sep 11, 2015
1 parent a074f66 commit 1655135
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ Bleach Changes
Version 1.4.2
-------------

- Fix hang in linkify with parse_email=True.
- Fix crash in linkify when removing a link that is a first-child.
- Fix hang in linkify with parse_email=True. #124
- Fix crash in linkify when removing a link that is a first-child. #136
- Updated TLDs.
- Don't remove exterior brackets when linkifying. #146


Version 1.4.1
Expand Down
4 changes: 2 additions & 2 deletions bleach/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
from .sanitizer import BleachSanitizer


VERSION = (1, 4, 1)
__version__ = '1.4.1'
VERSION = (1, 4, 2)
__version__ = '.'.join([str(n) for n in VERSION])

__all__ = ['clean', 'linkify']

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='bleach',
version='1.4.1',
version='1.4.2',
description='An easy whitelist-based HTML-sanitizing tool.',
long_description=open('README.rst').read(),
author='James Socol',
Expand Down

0 comments on commit 1655135

Please sign in to comment.