summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Warsaw2014-12-30 14:43:56 -0500
committerBarry Warsaw2014-12-30 14:43:56 -0500
commit1172db1d3a03227022011d1131d5fd12138ac0db (patch)
tree9a51ba24ccc27143ba84fd0b1a8cd100a48fe715
parent91f0c9784ecb2fbce46676832a068690d3286823 (diff)
downloadmailman-1172db1d3a03227022011d1131d5fd12138ac0db.tar.gz
mailman-1172db1d3a03227022011d1131d5fd12138ac0db.tar.zst
mailman-1172db1d3a03227022011d1131d5fd12138ac0db.zip
-rw-r--r--src/mailman/docs/NEWS.rst5
-rw-r--r--src/mailman/version.py6
2 files changed, 8 insertions, 3 deletions
diff --git a/src/mailman/docs/NEWS.rst b/src/mailman/docs/NEWS.rst
index 6203a2e32..651e4b98f 100644
--- a/src/mailman/docs/NEWS.rst
+++ b/src/mailman/docs/NEWS.rst
@@ -8,6 +8,11 @@ Copyright (C) 1998-2014 by the Free Software Foundation, Inc.
Here is a history of user visible changes to Mailman.
+3.0 beta 6 -- "Show Don't Tell"
+===============================
+(2015-XX-XX)
+
+
3.0 beta 5 -- "Carve Away The Stone"
====================================
(2014-12-29)
diff --git a/src/mailman/version.py b/src/mailman/version.py
index ac15d8fc8..f4548646b 100644
--- a/src/mailman/version.py
+++ b/src/mailman/version.py
@@ -18,8 +18,8 @@
"""Mailman version strings."""
# Mailman version.
-VERSION = '3.0.0b5'
-CODENAME = 'Carve Away The Stone'
+VERSION = '3.0.0b6'
+CODENAME = "Show Don't Tell"
# 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 = BETA
# 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))