]> git.phdru.name Git - mimedecode.git/commitdiff
Version 2.1.0.
authorOleg Broytman <phd@phdru.name>
Thu, 27 Apr 2006 14:53:24 +0000 (14:53 +0000)
committerOleg Broytman <phd@phdru.name>
Thu, 27 Apr 2006 14:53:24 +0000 (14:53 +0000)
git-svn-id: file:///home/phd/archive/SVN/mimedecode@6 a778b35f-2f12-0410-a9f6-9b1356d76ba6

ANNOUNCE
setup.py

index 731ee2cc4311cf8374fd2dbb7ee0dd68c0ae4e1a..514d6c0cdaa3f05c294a8bd45a3bd9455e64eb5e 100644 (file)
--- 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 <bogdan.maryniuk@gmail.com>:
+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 <phd@phd.pp.ru>
 
 COPYRIGHT
-   Copyright (C) 2001-2004 PhiloSoft Design
+   Copyright (C) 2001-2006 PhiloSoft Design
 
 LICENSE
    GPL
index f5c7e42745848d833ceebbb5dae6abe6c167443c..8b29cb1a24f497114ee5384027593d915612af4e 100755 (executable)
--- 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",