diff options
-rw-r--r-- | NEWS.txt | 6 | ||||
-rw-r--r-- | bs4/__init__.py | 2 |
2 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,8 @@ -= 4.0.0b11 () = += 4.0.1 (20120314) = + +* This is the first official release of Beautiful Soup 4. There is no + 4.0.0 release, to eliminate any possibility that packaging software + might treat "4.0.0" as being an earlier version than "4.0.0b10". * Brought BS up to date with the latest release of soupselect, adding CSS selector support for direct descendant matches and multiple CSS diff --git a/bs4/__init__.py b/bs4/__init__.py index 8e0755b..4618035 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.0b10" +__version__ = "4.0.1" __copyright__ = "Copyright (c) 2004-2012 Leonard Richardson" __license__ = "MIT" |