diff options
-rw-r--r-- | NEWS.txt | 2 | ||||
-rw-r--r-- | bs4/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -= 4.0.3 () = += 4.0.3 (20120403) = * Fixed a typo that caused some versions of Python 3 to convert the Beautiful Soup codebase incorrectly. diff --git a/bs4/__init__.py b/bs4/__init__.py index 8d417e6..68e9fed 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.2" +__version__ = "4.0.3" __copyright__ = "Copyright (c) 2004-2012 Leonard Richardson" __license__ = "MIT" @@ -7,7 +7,7 @@ except ImportError: from distutils.command.build_py import build_py setup(name="beautifulsoup4", - version = "4.0.2", + version = "4.0.3", author="Leonard Richardson", author_email='leonardr@segfault.org', url="http://www.crummy.com/software/BeautifulSoup/bs4/", |