diff options
-rw-r--r-- | NEWS.txt | 4 | ||||
-rw-r--r-- | bs4/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ -= 4.3.2 (Unreleased) = += 4.3.2 (20131002) = * Fixed a bug in which short Unicode input was improperly encoded to - ASCII when checking whether or not it was a file on + ASCII when checking whether or not it was the name of a file on disk. [bug=1227016] * Fixed a crash when a short input contains data not valid in diff --git a/bs4/__init__.py b/bs4/__init__.py index 341efc6..7ba3426 100644 --- a/bs4/__init__.py +++ b/bs4/__init__.py @@ -17,7 +17,7 @@ http://www.crummy.com/software/BeautifulSoup/bs4/doc/ """ __author__ = "Leonard Richardson (leonardr@segfault.org)" -__version__ = "4.3.1" +__version__ = "4.3.2" __copyright__ = "Copyright (c) 2004-2013 Leonard Richardson" __license__ = "MIT" @@ -7,7 +7,7 @@ except ImportError: from distutils.command.build_py import build_py setup(name="beautifulsoup4", - version = "4.3.1", + version = "4.3.2", author="Leonard Richardson", author_email='leonardr@segfault.org', url="http://www.crummy.com/software/BeautifulSoup/bs4/", |