summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mailman/docs/NEWS.rst5
-rw-r--r--src/mailman/version.py8
2 files changed, 9 insertions, 4 deletions
diff --git a/src/mailman/docs/NEWS.rst b/src/mailman/docs/NEWS.rst
index 02ea99eb3..45939b416 100644
--- a/src/mailman/docs/NEWS.rst
+++ b/src/mailman/docs/NEWS.rst
@@ -8,6 +8,11 @@ Copyright (C) 1998-2011 by the Free Software Foundation, Inc.
Here is a history of user visible changes to Mailman.
+3.0 beta 1 -- "The Twilight Zone"
+=================================
+(20XX-XX-XX)
+
+
3.0 alpha 8 -- "Where's My Thing?"
==================================
(2011-09-23)
diff --git a/src/mailman/version.py b/src/mailman/version.py
index 5e131a260..a77141404 100644
--- a/src/mailman/version.py
+++ b/src/mailman/version.py
@@ -18,8 +18,8 @@
"""Mailman version strings."""
# Mailman version
-VERSION = '3.0.0a8'
-CODENAME = "Where's My Thing?"
+VERSION = '3.0.0a8+'
+CODENAME = "The Twilight Zone"
# And as a hex number in the manner of PY_VERSION_HEX
ALPHA = 0xa
@@ -32,9 +32,9 @@ FINAL = 0xf
MAJOR_REV = 3
MINOR_REV = 0
MICRO_REV = 0
-REL_LEVEL = ALPHA
+REL_LEVEL = BETA
# at most 15 beta releases!
-REL_SERIAL = 8
+REL_SERIAL = 1
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
(REL_LEVEL << 4) | (REL_SERIAL << 0))