summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2013-10-02 08:33:46 -0400
committerLeonard Richardson <leonardr@segfault.org>2013-10-02 08:33:46 -0400
commit031ff0e51d01ef4ab09b47916f342f9f77e13daf (patch)
treecb5fdb81d52d6e3dfd8f1b0da93f287d51e0a622
parentd69a8433c010ad5c790566bd4d4e47a1db81988c (diff)
Prep for release.
-rw-r--r--NEWS.txt4
-rw-r--r--bs4/__init__.py2
-rw-r--r--setup.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS.txt b/NEWS.txt
index d8819e2..88a60a2 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -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"
diff --git a/setup.py b/setup.py
index c0eba9b..0142ea0 100644
--- a/setup.py
+++ b/setup.py
@@ -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/",