aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Rodger <paul@paulrodger.com>2002-09-19 00:10:06 +0000
committerPaul Rodger <paul@paulrodger.com>2002-09-19 00:10:06 +0000
commit485b7f882acb959e5d29d67b2be14377866c4cfc (patch)
treed76ec1cd13fd1665596092fcc26831fa6b8666ec
parentbaeb03abd4406b90ca715ecd4e69ae61aed26134 (diff)
downloadarchivemail-485b7f882acb959e5d29d67b2be14377866c4cfc.tar.gz
archivemail-485b7f882acb959e5d29d67b2be14377866c4cfc.tar.bz2
archivemail-485b7f882acb959e5d29d67b2be14377866c4cfc.zip
Opps - forgot to commit the new version number changes (0.5.1)
-rw-r--r--CHANGELOG5
-rw-r--r--Makefile2
-rw-r--r--TODO2
-rwxr-xr-xarchivemail.py2
-rwxr-xr-xsetup.py2
5 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 2325de0..f723ea5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,9 @@
+Version 0.5.1 - 18 September 2002
+ * Fixed a bug where when running archivemail as root on a non-root mailbox,
+ the temporary container directory would be created as root before the
+ seteuid() took place. (Thanks Jay Hesselberth)
+
Version 0.5.0 - 15 September 2002
* Fixed a bug where mailbox locking would fail under Solaris. (Thanks Mark
Sheller)
diff --git a/Makefile b/Makefile
index 5665421..601f156 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-VERSION=0.5.0
+VERSION=0.5.1
VERSION_TAG=v$(subst .,_,$(VERSION))
TARFILE=archivemail-$(VERSION).tar.gz
diff --git a/TODO b/TODO
index 6c0e386..ba65734 100644
--- a/TODO
+++ b/TODO
@@ -1,5 +1,5 @@
-Goals for next minor release (0.5.1):
+Goals for next minor release
-------------------------------------
* When you get a file-not-found in the 6th mailbox of 10, it aborts the whole
run. Better to fail gracefully and keep going.
diff --git a/archivemail.py b/archivemail.py
index 0706ef5..a4a8046 100755
--- a/archivemail.py
+++ b/archivemail.py
@@ -22,7 +22,7 @@ Website: http://archivemail.sourceforge.net/
"""
# global administrivia
-__version__ = "archivemail v0.5.0"
+__version__ = "archivemail v0.5.1"
__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
diff --git a/setup.py b/setup.py
index e2730d7..b4efe84 100755
--- a/setup.py
+++ b/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.5.0",
+ version="0.5.1",
description="archive and compress old email",
license="GNU GPL",
url="http://archivemail.sourceforge.net/",