From: Oleg Broytman Date: Tue, 10 Dec 2013 12:24:51 +0000 (+0400) Subject: Version 2.1.3: minor bugfix X-Git-Tag: v2.3.2~62 X-Git-Url: https://git.phdru.name/?p=mimedecode.git;a=commitdiff_plain;h=e6a27b4c388053c20bde7fd3af12a76c6aeab969 Version 2.1.3: minor bugfix --- diff --git a/ANNOUNCE b/ANNOUNCE index 00cea38..6ea2c51 100644 --- 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. diff --git a/mimedecode.py b/mimedecode.py index e056296..56d59ca 100755 --- a/mimedecode.py +++ b/mimedecode.py @@ -2,7 +2,7 @@ """Decode MIME message""" -__version__ = "2.1.2" +__version__ = "2.1.3" __author__ = "Oleg Broytman " __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)