summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBarry Warsaw2010-09-20 18:28:02 -0400
committerBarry Warsaw2010-09-20 18:28:02 -0400
commite5c8746854965e8a834fce9276a6a25856800b20 (patch)
tree814bb4c636ecb0cf4ef94c224665fbb5a41596c6 /src
parent922b669dc02ceee78cf7a79860a4fcb977ab4634 (diff)
downloadmailman-e5c8746854965e8a834fce9276a6a25856800b20.tar.gz
mailman-e5c8746854965e8a834fce9276a6a25856800b20.tar.zst
mailman-e5c8746854965e8a834fce9276a6a25856800b20.zip
Diffstat (limited to 'src')
-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 638d8318c..087dc58ae 100644
--- a/src/mailman/docs/NEWS.txt
+++ b/src/mailman/docs/NEWS.txt
@@ -8,6 +8,11 @@ Copyright (C) 1998-2010 by the Free Software Foundation, Inc.
Here is a history of user visible changes to Mailman.
+3.0 alpha 7 -- "Mission"
+========================
+(201X-XX-XX)
+
+
3.0 alpha 6 -- "Cut to the Chase"
=================================
(2010-09-20)
diff --git a/src/mailman/version.py b/src/mailman/version.py
index 34cffedb1..5ca35e9ce 100644
--- a/src/mailman/version.py
+++ b/src/mailman/version.py
@@ -18,8 +18,8 @@
"""Mailman version strings."""
# Mailman version
-VERSION = "3.0.0a6"
-CODENAME = 'Cut to the Chase'
+VERSION = "3.0.0a7"
+CODENAME = 'Mission'
# 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 = 6
+REL_SERIAL = 7
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
(REL_LEVEL << 4) | (REL_SERIAL << 0))