Prepping 6.1.2

This commit is contained in:
John Goerzen 2009-07-16 00:03:23 -05:00
parent 220db8a77d
commit b053923d41
4 changed files with 19 additions and 3 deletions

View File

@ -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')

16
debian/changelog vendored
View File

@ -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 <jgoerzen@complete.org> Thu, 16 Jul 2009 10:52:30 -0500
offlineimap (6.1.1) unstable; urgency=low
* Fix minimum Python version. Closes: #535481.

View File

@ -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')

View File

@ -1,5 +1,5 @@
productname = 'OfflineIMAP'
versionstr = "6.1.1"
versionstr = "6.1.2"
versionlist = versionstr.split(".")
major = versionlist[0]