diff --git a/Changelog.draft.rst b/Changelog.draft.rst index 36571eb..8b599f9 100644 --- a/Changelog.draft.rst +++ b/Changelog.draft.rst @@ -19,10 +19,6 @@ Changes Bug Fixes --------- -* Fix craches for getglobalui(). -* Fix documentation build. -* Restore compatibiliy with python 2.5. - Pending for the next major release ================================== diff --git a/Changelog.rst b/Changelog.rst index 1eb56ef..78554cd 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -2,6 +2,9 @@ ChangeLog ========= +:website: http://offlineimap.org + + **NOTE FROM THE MAINTAINER:** Contributors should use the `WIP` section in Changelog.draft.rst in order to add changes they are working on. I will use it to make the new changelog entry @@ -9,6 +12,35 @@ ChangeLog releases announces. +OfflineIMAP v6.3.2 (2010-02-21) +=============================== + +Notes +----- + +First of all I'm really happy to announce our new official `website`_. Most of +the work started from the impulse of Philippe LeCavalier with the help of +Sebastian Spaeth and other contributors. Thanks to everybody. + +In this release, we are still touched by the "SSL3 write pending" but I think +time was long enough to try to fix it. We have our first entry in the "KNOWN +BUG" section of the manual about that. I'm afraid it could impact a lot of users +if some distribution package any SSL library not having underlying (still +obscure) requirements. Distribution maintainers should be care of it. I hope +this release will help us to have more reports. + +This release will also be the root of our long maintenance support. + +Other bugs were fixed. + +Bug Fixes +--------- + +* Fix craches for getglobalui(). +* Fix documentation build. +* Restore compatibiliy with python 2.5. + + OfflineIMAP v6.3.2-rc3 (2010-02-06) =================================== diff --git a/Makefile b/Makefile index 08c1a7a..7d45f38 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -VERSION=4.0.16 +VERSION=6.3.2 TARGZ=offlineimap_$(VERSION).tar.gz SHELL=/bin/bash RST2HTML=`type rst2html 2>/dev/null 2>&1 && echo rst2html || echo rst2html.py` diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index aa7c317..4a760df 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,7 +1,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.3.1" +__version__ = "6.3.2" __copyright__ = "Copyright (C) 2002 - 2010 John Goerzen" __author__ = "John Goerzen" __author_email__= "john@complete.org"