From 5328f10b39d54b86cdb3a0273985f2d16fe256bc Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Mon, 13 Jun 2011 16:53:35 +0200 Subject: [PATCH] v6.3.4-rc2 Signed-off-by: Nicolas Sebrecht --- Changelog.draft.rst | 8 -------- Changelog.rst | 19 +++++++++++++++++++ offlineimap/__init__.py | 2 +- 3 files changed, 20 insertions(+), 9 deletions(-) diff --git a/Changelog.draft.rst b/Changelog.draft.rst index 83aa357..fd445ac 100644 --- a/Changelog.draft.rst +++ b/Changelog.draft.rst @@ -16,17 +16,9 @@ New Features Changes ------- -* Maildirs use less memory while syncing. - Bug Fixes --------- -* Saving to Maildirs now checks for file existence without race conditions. -* A bug in the underlying imap library has been fixed that could - potentially lead to data loss if the server interrupted responses with - unexpected but legal server status responses. This would mainly occur - in folders with many thousands of emails. Upgrading from the previous - release is strongly recommended. Pending for the next major release ================================== diff --git a/Changelog.rst b/Changelog.rst index 0f5d6d1..ac9bf47 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -12,6 +12,25 @@ ChangeLog releases announces. +OfflineIMAP v6.3.4-rc2 (2011-06-15) +=================================== + +Changes +------- + +* Maildirs use less memory while syncing. + +Bug Fixes +--------- + +* Saving to Maildirs now checks for file existence without race conditions. +* A bug in the underlying imap library has been fixed that could + potentially lead to data loss if the server interrupted responses with + unexpected but legal server status responses. This would mainly occur + in folders with many thousands of emails. Upgrading from the previous + release is strongly recommended. + + OfflineIMAP v6.3.4-rc1 (2011-05-16) =================================== diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index d7313cc..f64f93d 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,7 +1,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.3.4-rc1" +__version__ = "6.3.4-rc2" __copyright__ = "Copyright (C) 2002 - 2010 John Goerzen" __author__ = "John Goerzen" __author_email__= "john@complete.org"