From: Oleg Broytman Date: Thu, 27 Apr 2006 14:53:24 +0000 (+0000) Subject: Version 2.1.0. X-Git-Tag: v2.3.2~90 X-Git-Url: https://git.phdru.name/?p=mimedecode.git;a=commitdiff_plain;h=1571360154c37f7c8d59d8c49876770f511af8c8 Version 2.1.0. git-svn-id: file:///home/phd/archive/SVN/mimedecode@6 a778b35f-2f12-0410-a9f6-9b1356d76ba6 --- diff --git a/ANNOUNCE b/ANNOUNCE index 731ee2c..514d6c0 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -22,15 +22,12 @@ 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.0.0d (2004-08-26) - Documentation update. Changed and corrected documentation, especially -docbook source file. Changed Makefiles to use sgml-tools or 4xslt (from -4Suite.org). - +WHAT'S NEW in version 2.1.0 (2006-04-27) + A patch by Bogdan Maryniuk : +portable way to get the default charset. WHAT'S NEW in version 2.0.0 - Major rewrite to use python email package. Old version is still inluded in -the archive; the latest bug-fix version is 1.1.7. + Major rewrite to use python email package. WHERE TO GET @@ -53,7 +50,7 @@ AUTHOR Oleg Broytmann COPYRIGHT - Copyright (C) 2001-2004 PhiloSoft Design + Copyright (C) 2001-2006 PhiloSoft Design LICENSE GPL diff --git a/setup.py b/setup.py index f5c7e42..8b29cb1 100755 --- a/setup.py +++ b/setup.py @@ -2,13 +2,13 @@ from distutils.core import setup -from mimedecode import __version__ as version +from mimedecode import _version, __copyright__ setup(name = "mimedecode", - version = version + 'd', + version = _version, description = "BroytMann mimedecode.py", - long_description = "BroytMann mimedecode.py, Copyright (C) 2001-2004 PhiloSoft Design", + long_description = "BroytMann mimedecode.py, " + __copyright__, author = "Oleg Broytmann", author_email = "phd@phd.pp.ru", url = "http://phd.pp.ru/Software/Python/#mimedecode",