summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS.txt2
-rw-r--r--bs4/__init__.py2
-rw-r--r--setup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/NEWS.txt b/NEWS.txt
index ec8fc79..d264bff 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,4 +1,4 @@
-= 4.0.0b5 =
+= 4.0.0b5 (20120209) =
* Rationalized Beautiful Soup's treatment of CSS class. A tag
belonging to multiple CSS classes is treated as having a list of
diff --git a/bs4/__init__.py b/bs4/__init__.py
index 6917fa9..1aaa6dd 100644
--- a/bs4/__init__.py
+++ b/bs4/__init__.py
@@ -18,7 +18,7 @@ http://www.crummy.com/software/BeautifulSoup/documentation.html
"""
__author__ = "Leonard Richardson (leonardr@segfault.org)"
-__version__ = "4.0.0b4"
+__version__ = "4.0.0b5"
__copyright__ = "Copyright (c) 2004-2012 Leonard Richardson"
__license__ = "MIT"
diff --git a/setup.py b/setup.py
index 4eebcb8..407559d 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.0b4",
+ version = "4.0.0b5",
author="Leonard Richardson",
author_email='leonardr@segfault.org',
url="http://www.crummy.com/software/BeautifulSoup/bs4/",