summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Warsaw2009-08-21 18:25:17 -0400
committerBarry Warsaw2009-08-21 18:25:17 -0400
commit7c918b077b844fc174240392138692b4b0efc629 (patch)
tree8051e0bd97cae7eb0e32195ef9ba29e6e06d487a
parentebf2b817b9888c809be3d3b3f6939105f09865ea (diff)
downloadmailman-7c918b077b844fc174240392138692b4b0efc629.tar.gz
mailman-7c918b077b844fc174240392138692b4b0efc629.tar.zst
mailman-7c918b077b844fc174240392138692b4b0efc629.zip
-rw-r--r--docs/NEWS.txt5
-rw-r--r--src/mailman/version.py6
2 files changed, 8 insertions, 3 deletions
diff --git a/docs/NEWS.txt b/docs/NEWS.txt
index 2d7fea2c3..a3fc04d31 100644
--- a/docs/NEWS.txt
+++ b/docs/NEWS.txt
@@ -7,6 +7,11 @@ Copyright (C) 1998-2009 by the Free Software Foundation, Inc.
Here is a history of user visible changes to Mailman.
+3.0 alpha 4 -- "Vital Signs"
+============================
+(20XX-XX-XX)
+
+
3.0 alpha 3 -- "Working Man"
============================
(2009-08-21)
diff --git a/src/mailman/version.py b/src/mailman/version.py
index 5c4a0d9c3..6950159f2 100644
--- a/src/mailman/version.py
+++ b/src/mailman/version.py
@@ -18,8 +18,8 @@
"""Mailman version strings."""
# Mailman version
-VERSION = "3.0.0a3"
-CODENAME = 'Working Man'
+VERSION = "3.0.0a4"
+CODENAME = 'Vital Signs'
# 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 = 3
+REL_SERIAL = 4
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
(REL_LEVEL << 4) | (REL_SERIAL << 0))