From b053923d410923a9634f29c16849e530039436d2 Mon Sep 17 00:00:00 2001 From: John Goerzen Date: Thu, 16 Jul 2009 00:03:23 -0500 Subject: [PATCH] Prepping 6.1.2 --- bin/offlineimap | 2 +- debian/changelog | 16 ++++++++++++++++ offlineimap.py | 2 +- offlineimap/version.py | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/bin/offlineimap b/bin/offlineimap index 94d6ff1..e833df3 100755 --- a/bin/offlineimap +++ b/bin/offlineimap @@ -18,4 +18,4 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from offlineimap import init -init.startup('6.1.1') +init.startup('6.1.2') diff --git a/debian/changelog b/debian/changelog index f2eccdd..2caf1d5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +offlineimap (6.1.2) UNRELEASED; urgency=low + + * Applied patch from Peter Colberg to remove usage of hard linking. + Closes: #535160. + * Fix the order of folders during sync. Patch from + Nicolas Dandrimont. Closes: #535540. + * Reduce memory usage when scanning Maildirs. Patch from Michal + Vitecek. + * Use latest version of imaplib2. Patch from Christoph Höger. + Fixes Kerberos login problems. + * Quick synchronizations (for 'quick' > 0) are now performed between + full synchronizations (as specified in the documentation). + Patch from Michal Vitecek. + + -- John Goerzen Thu, 16 Jul 2009 10:52:30 -0500 + offlineimap (6.1.1) unstable; urgency=low * Fix minimum Python version. Closes: #535481. diff --git a/offlineimap.py b/offlineimap.py index c813c7f..fb19671 100755 --- a/offlineimap.py +++ b/offlineimap.py @@ -18,4 +18,4 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA from offlineimap import init -init.startup('6.1.0') +init.startup('6.1.2') diff --git a/offlineimap/version.py b/offlineimap/version.py index 7bc1756..2241245 100644 --- a/offlineimap/version.py +++ b/offlineimap/version.py @@ -1,5 +1,5 @@ productname = 'OfflineIMAP' -versionstr = "6.1.1" +versionstr = "6.1.2" versionlist = versionstr.split(".") major = versionlist[0]