diff --git a/CHANGELOG b/CHANGELOG index f7de3ff..0fbb072 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +version 0.8.1 - 30 September 2010 + + * IMAP: fixed handling of LIST replies by the server where the mailbox name + is not a quoted string. (Thanks Karsten Müller) + Version 0.8.0 - 9 August 2010 * Fixed date header parsing to be precise with timezone information. Also, diff --git a/archivemail b/archivemail index 5931992..d5f326c 100755 --- a/archivemail +++ b/archivemail @@ -24,7 +24,7 @@ Website: http://archivemail.sourceforge.net/ """ # global administrivia -__version__ = "archivemail v0.8.0" +__version__ = "archivemail v0.8.1" __copyright__ = """\ Copyright (C) 2002 Paul Rodger (C) 2006 Peter Poeml , diff --git a/index.html b/index.html index 0148723..522ed47 100644 --- a/index.html +++ b/index.html @@ -33,8 +33,8 @@
- Latest version: 0.8.0
- Released on 2010-08-09 + Latest version: 0.8.1
+ Released on 2010-09-30

What is it?

diff --git a/setup.py b/setup.py index 53a3c13..20b5eed 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ check_python_version() from distutils.core import setup setup(name="archivemail", - version="0.8.0", + version="0.8.1", description="archive and compress old email", license="GNU GPL", url="http://archivemail.sourceforge.net/",