aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman')
-rw-r--r--Mailman/Version.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py
index dd43f7d0..649e0f68 100644
--- a/Mailman/Version.py
+++ b/Mailman/Version.py
@@ -16,7 +16,7 @@
# USA.
# Mailman version
-VERSION = '2.1.29'
+VERSION = '2.1.30rc1'
# And as a hex number in the manner of PY_VERSION_HEX
ALPHA = 0xa
@@ -28,10 +28,10 @@ FINAL = 0xf
MAJOR_REV = 2
MINOR_REV = 1
-MICRO_REV = 29
-REL_LEVEL = FINAL
+MICRO_REV = 30
+REL_LEVEL = GAMMA
# 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))