]> git.phdru.name Git - mimedecode.git/commitdiff
Version 2.1.3: minor bugfix
authorOleg Broytman <phd@phdru.name>
Tue, 10 Dec 2013 12:24:51 +0000 (16:24 +0400)
committerOleg Broytman <phd@phdru.name>
Tue, 10 Dec 2013 12:24:51 +0000 (16:24 +0400)
ANNOUNCE
mimedecode.py

index 00cea38e92bf51532e4950d1ef8c5e38e3b23749..6ea2c5117b5da88152c285a8fa5d2f1c659f36f4 100644 (file)
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -22,6 +22,9 @@ one part. If it is a MIME message with multiple parts ("attachments") all parts
 are decoded. Decoding can be controlled by command-line options.
 
 
+WHAT'S NEW in version 2.1.3 (2013-12-10)
+   Minor bugfix.
+
 WHAT'S NEW in version 2.1.2 (2013-07-26)
    Minor fix in Makefile. Switched to git.
 
index e0562967b472db703018925ad9392101e36053b3..56d59ca415276f3122a196fd6d390b3655a7c4b3 100755 (executable)
@@ -2,7 +2,7 @@
 """Decode MIME message"""
 
 
-__version__ = "2.1.2"
+__version__ = "2.1.3"
 __author__ = "Oleg Broytman <phd@phdru.name>"
 __copyright__ = "Copyright (C) 2001-2013 PhiloSoft Design"
 __license__ = "GNU GPL"
@@ -26,7 +26,7 @@ me = os.path.basename(sys.argv[0])
 def version(exit=1):
    sys.stdout.write("""\
 Broytman mimedecode.py version %s, %s
-""" % (_version, __copyright__))
+""" % (__version__, __copyright__))
    if exit: sys.exit(0)