mirror of
https://git.code.sf.net/p/archivemail/code
synced 2025-03-16 09:29:25 +00:00
bump version to 0.6.2
This commit is contained in:
parent
e00581acb2
commit
933aa18259
4 changed files with 12 additions and 4 deletions
10
CHANGELOG
10
CHANGELOG
|
@ -1,5 +1,13 @@
|
|||
|
||||
Version 0.6.2 - ???
|
||||
Version 0.6.2 - 27 June 2006
|
||||
* add -F/--filter-append option to append an arbitrary string to the IMAP
|
||||
filter string
|
||||
* don't delete more than a certain number of messages at a time. The max
|
||||
command len is limited. Fixes bug 942403 (Archiving large IMAP folders fails)
|
||||
* add SSL support per imaps URL (after patch by Tobias Gruetzmacher)
|
||||
* add -P/--pwfile option to supply the IMAP password, so it does not end up in
|
||||
the shell history
|
||||
* Fix SyntaxWarning: assignment to None (bug #843890)
|
||||
* Use the archive cut date rather than the actual time with the --suffix
|
||||
option. (Thanks Manuel Estrada Sainz)
|
||||
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
|
||||
VERSION=0.6.1
|
||||
VERSION=0.6.2
|
||||
VERSION_TAG=v$(subst .,_,$(VERSION))
|
||||
TARFILE=archivemail-$(VERSION).tar.gz
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ Website: http://archivemail.sourceforge.net/
|
|||
"""
|
||||
|
||||
# global administrivia
|
||||
__version__ = "archivemail v0.6.1"
|
||||
__version__ = "archivemail v0.6.2"
|
||||
__cvs_id__ = "$Id$"
|
||||
__copyright__ = """Copyright (C) 2002 Paul Rodger <paul@paulrodger.com>
|
||||
This is free software; see the source for copying conditions. There is NO
|
||||
|
|
2
setup.py
2
setup.py
|
@ -19,7 +19,7 @@ check_python_version() # define & run this early - 'distutils.core' is new
|
|||
from distutils.core import setup
|
||||
|
||||
setup(name="archivemail",
|
||||
version="0.6.1",
|
||||
version="0.6.2",
|
||||
description="archive and compress old email",
|
||||
license="GNU GPL",
|
||||
url="http://archivemail.sourceforge.net/",
|
||||
|
|
Loading…
Add table
Reference in a new issue