diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2012-03-14 10:24:20 -0400 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2012-03-14 10:24:20 -0400 |
commit | a90b35de16d6050931ef730ee2c3bf5e199343e7 (patch) | |
tree | 73220a8681b7be3d4a9bbb0d53aa9255ad082307 | |
parent | 74ca8e3f33d44475401be0bc418da83264f91207 (diff) |
Bumped version number.
-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" |