summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mailman/docs/NEWS.txt5
-rw-r--r--src/mailman/version.py6
2 files changed, 8 insertions, 3 deletions
diff --git a/src/mailman/docs/NEWS.txt b/src/mailman/docs/NEWS.txt
index 547215629..182ca6e23 100644
--- a/src/mailman/docs/NEWS.txt
+++ b/src/mailman/docs/NEWS.txt
@@ -7,6 +7,11 @@ Copyright (C) 1998-2010 by the Free Software Foundation, Inc.
Here is a history of user visible changes to Mailman.
+3.0 alpha 6 -- "Cut to the Chase"
+=================================
+(2010-XX-XX)
+
+
3.0 alpha 5 -- "Distant Early Warning"
======================================
(2010-01-18)
diff --git a/src/mailman/version.py b/src/mailman/version.py
index 1f0b1ebb4..34cffedb1 100644
--- a/src/mailman/version.py
+++ b/src/mailman/version.py
@@ -18,8 +18,8 @@
"""Mailman version strings."""
# Mailman version
-VERSION = "3.0.0a5"
-CODENAME = 'Distant Early Warning'
+VERSION = "3.0.0a6"
+CODENAME = 'Cut to the Chase'
# And as a hex number in the manner of PY_VERSION_HEX
ALPHA = 0xa
@@ -34,7 +34,7 @@ MINOR_REV = 0
MICRO_REV = 0
REL_LEVEL = ALPHA
# at most 15 beta releases!
-REL_SERIAL = 5
+REL_SERIAL = 6
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
(REL_LEVEL << 4) | (REL_SERIAL << 0))