aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Version.py
diff options
context:
space:
mode:
authorbwarsaw <>2005-05-14 18:49:08 +0000
committerbwarsaw <>2005-05-14 18:49:08 +0000
commit1cfb1ae395c408f032b7cfcc32d2a11c2f08bc4c (patch)
tree036d8909a38599e10068ec72557719198c291623 /Mailman/Version.py
parent52f873d5ae7379be7d239f5cb5abaaeb2e05b53f (diff)
downloadmailman2-1cfb1ae395c408f032b7cfcc32d2a11c2f08bc4c.tar.gz
mailman2-1cfb1ae395c408f032b7cfcc32d2a11c2f08bc4c.tar.xz
mailman2-1cfb1ae395c408f032b7cfcc32d2a11c2f08bc4c.zip
Bump to 2.1.6rc4
Diffstat (limited to '')
-rw-r--r--Mailman/Version.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py
index 7f2b612e..fdcdbfb8 100644
--- a/Mailman/Version.py
+++ b/Mailman/Version.py
@@ -15,7 +15,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Mailman version
-VERSION = "2.1.6rc3"
+VERSION = "2.1.6rc4"
# And as a hex number in the manner of PY_VERSION_HEX
ALPHA = 0xa
@@ -30,7 +30,7 @@ MINOR_REV = 1
MICRO_REV = 6
REL_LEVEL = GAMMA
# at most 15 beta releases!
-REL_SERIAL = 3
+REL_SERIAL = 4
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
(REL_LEVEL << 4) | (REL_SERIAL << 0))