[Python-checkins] r82257 - in python/branches/release26-maint: Lib/email/__init__.py Misc/NEWS

r.david.murray python-checkins at python.org
Sat Jun 26 21:01:40 CEST 2010


Author: r.david.murray
Date: Sat Jun 26 21:01:40 2010
New Revision: 82257

Log:
#9085: bump email package version to its correct value.

Previous versions of 2.6 have 4.0.1 because of a missed trunk
commit when 2.5 was released.


Modified:
   python/branches/release26-maint/Lib/email/__init__.py
   python/branches/release26-maint/Misc/NEWS

Modified: python/branches/release26-maint/Lib/email/__init__.py
==============================================================================
--- python/branches/release26-maint/Lib/email/__init__.py	(original)
+++ python/branches/release26-maint/Lib/email/__init__.py	Sat Jun 26 21:01:40 2010
@@ -4,7 +4,7 @@
 
 """A package for parsing, handling, and generating email messages."""
 
-__version__ = '4.0.1'
+__version__ = '4.0.2'
 
 __all__ = [
     # Old names

Modified: python/branches/release26-maint/Misc/NEWS
==============================================================================
--- python/branches/release26-maint/Misc/NEWS	(original)
+++ python/branches/release26-maint/Misc/NEWS	Sat Jun 26 21:01:40 2010
@@ -73,6 +73,9 @@
 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.
 


More information about the Python-checkins mailing list