diff options
author | bwarsaw <> | 2004-01-02 15:25:00 +0000 |
---|---|---|
committer | bwarsaw <> | 2004-01-02 15:25:00 +0000 |
commit | e47ce33c948c80ee641399ac1c513546e2a37031 (patch) | |
tree | 8e824909142150a06345fedc7bc67777208e747f /Mailman/Version.py | |
parent | d2d0a8ec20b51e796ab758cbac79a188732d73fe (diff) | |
download | mailman2-e47ce33c948c80ee641399ac1c513546e2a37031.tar.gz mailman2-e47ce33c948c80ee641399ac1c513546e2a37031.tar.xz mailman2-e47ce33c948c80ee641399ac1c513546e2a37031.zip |
Bump version number, post release.
Diffstat (limited to 'Mailman/Version.py')
-rw-r--r-- | Mailman/Version.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py index fb6fd948..b5d92d28 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2003 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2004 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -15,7 +15,7 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Mailman version -VERSION = "2.1.4" +VERSION = "2.1.5a1" # And as a hex number in the manner of PY_VERSION_HEX ALPHA = 0xa @@ -27,10 +27,10 @@ FINAL = 0xf MAJOR_REV = 2 MINOR_REV = 1 -MICRO_REV = 4 -REL_LEVEL = FINAL +MICRO_REV = 5 +REL_LEVEL = ALPHA # at most 15 beta releases! -REL_SERIAL = 0 +REL_SERIAL = 1 HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) |