diff options
author | bwarsaw <> | 2005-01-16 21:59:15 +0000 |
---|---|---|
committer | bwarsaw <> | 2005-01-16 21:59:15 +0000 |
commit | 81b9f32af6bb01cd96ec45ce69f2b611dabdd5ee (patch) | |
tree | 3f0be0c1fdd0d2e8304d8132ce41a945277e3018 | |
parent | 26733a702a032a46153db5203f3bacd5157ad576 (diff) | |
download | mailman2-81b9f32af6bb01cd96ec45ce69f2b611dabdd5ee.tar.gz mailman2-81b9f32af6bb01cd96ec45ce69f2b611dabdd5ee.tar.xz mailman2-81b9f32af6bb01cd96ec45ce69f2b611dabdd5ee.zip |
Bump to 2.1.6b1.
-rw-r--r-- | Mailman/Version.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py index 97405310..4c00612b 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2004 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2005 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.6a2" +VERSION = "2.1.6b1" # And as a hex number in the manner of PY_VERSION_HEX ALPHA = 0xa @@ -28,9 +28,9 @@ FINAL = 0xf MAJOR_REV = 2 MINOR_REV = 1 MICRO_REV = 6 -REL_LEVEL = ALPHA +REL_LEVEL = BETA # at most 15 beta releases! -REL_SERIAL = 2 +REL_SERIAL = 1 HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) |