summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Warsaw2011-09-25 18:17:04 -0400
committerBarry Warsaw2011-09-25 18:17:04 -0400
commit32a70d458ca705869889c0ab7c494bd1289dcac2 (patch)
treef6e91240bd71e4697ae7013a496feebfb79558ad
parent7a5c167a18a0bb628d2df17dc32e95381a988d4e (diff)
downloadmailman-32a70d458ca705869889c0ab7c494bd1289dcac2.tar.gz
mailman-32a70d458ca705869889c0ab7c494bd1289dcac2.tar.zst
mailman-32a70d458ca705869889c0ab7c494bd1289dcac2.zip
-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))