summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS.txt6
-rw-r--r--bs4/__init__.py2
-rw-r--r--setup.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/NEWS.txt b/NEWS.txt
index c423803..32df910 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,10 +1,10 @@
-= 4.0.2 () =
+= 4.0.2 (20120326) =
* Worked around a possible bug in lxml that prevents non-tiny XML
documents from being parsed. [bug=963880, bug=963936]
-* Fixed a bug where specifying `text` while searching for a tag only
- worked if `text` specified an exact string match. [bug=955942]
+* Fixed a bug where specifying `text` while also searching for a tag
+ only worked if `text` wanted an exact string match. [bug=955942]
= 4.0.1 (20120314) =
diff --git a/bs4/__init__.py b/bs4/__init__.py
index 4618035..8d417e6 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.0.1"
+__version__ = "4.0.2"
__copyright__ = "Copyright (c) 2004-2012 Leonard Richardson"
__license__ = "MIT"
diff --git a/setup.py b/setup.py
index 2558a65..3c64c63 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.0.1",
+ version = "4.0.2",
author="Leonard Richardson",
author_email='leonardr@segfault.org',
url="http://www.crummy.com/software/BeautifulSoup/bs4/",