]> granicus.if.org Git - python/commitdiff
#9085: bump email package version to its correct value.
authorR. David Murray <rdmurray@bitdance.com>
Sat, 26 Jun 2010 19:01:40 +0000 (19:01 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Sat, 26 Jun 2010 19:01:40 +0000 (19:01 +0000)
Previous versions of 2.6 have 4.0.1 because of a missed trunk
commit when 2.5 was released.

Lib/email/__init__.py
Misc/NEWS

index 8d230fdeb7d0300d7e331b2c58eb54910fd28837..a7934369198064cd6643bf44ea1416e73f02ecd5 100644 (file)
@@ -4,7 +4,7 @@
 
 """A package for parsing, handling, and generating email messages."""
 
-__version__ = '4.0.1'
+__version__ = '4.0.2'
 
 __all__ = [
     # Old names
index 1bd24d32fa7bdc4730e2221c0cdb1a6827338d98..9bbd19f282c0dfb684be5ab1b093ef62646e2dca 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -73,6 +73,9 @@ C-API
 Library
 -------
 
+- Issue #9085: email package version number bumped to its correct
+  value of 4.0.2 (same as it was in 2.5).
+
 - Issue #9075: In the ssl module, remove the setting of a ``debug`` flag
   on an OpenSSL structure.