[Python-checkins] r82246 - python/trunk/Lib/email/__init__.py

r.david.murray python-checkins at python.org
Sat Jun 26 20:39:50 CEST 2010


Author: r.david.murray
Date: Sat Jun 26 20:39:50 2010
New Revision: 82246

Log:
#9085: email versions have gotten out of sync, 2.7 is actually 4.0.3.

In 2.5 the email version was bumped to 4.0.2 just before release but
after the maintenance branch was set up.  The bump was not backported
to trunk, and 2.6 went out the door with a version number of 4.0.1.
I bumped this to 4.0.2 because of a behavior change, but that makes
it look the same as 2.5.  So bump it again to 4.0.3.


Modified:
   python/trunk/Lib/email/__init__.py

Modified: python/trunk/Lib/email/__init__.py
==============================================================================
--- python/trunk/Lib/email/__init__.py	(original)
+++ python/trunk/Lib/email/__init__.py	Sat Jun 26 20:39:50 2010
@@ -4,7 +4,7 @@
 
 """A package for parsing, handling, and generating email messages."""
 
-__version__ = '4.0.2'
+__version__ = '4.0.3'
 
 __all__ = [
     # Old names


More information about the Python-checkins mailing list