summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mailman/docs/NEWS.rst7
-rw-r--r--src/mailman/version.py6
2 files changed, 9 insertions, 4 deletions
diff --git a/src/mailman/docs/NEWS.rst b/src/mailman/docs/NEWS.rst
index 5020b89e3..329264e31 100644
--- a/src/mailman/docs/NEWS.rst
+++ b/src/mailman/docs/NEWS.rst
@@ -8,6 +8,11 @@ Copyright (C) 1998-2012 by the Free Software Foundation, Inc.
Here is a history of user visible changes to Mailman.
+3.0 beta 3 -- "Here Again"
+==========================
+(2012-XX-XX)
+
+
3.0 beta 2 -- "Freeze"
======================
(2012-09-05)
@@ -40,7 +45,7 @@ Architecture
they do, the implementations must acquire said lock themselves.
* The `news` runner and queue has been renamed to the more accurate `nntp`.
The runner has also been ported to Mailman 3 (LP: #967409). Beta testers
- can can safely remove `$var_dir/queue/news`.
+ can safely remove `$var_dir/queue/news`.
* A mailing list's *moderator password* is no longer stored in the clear; it
is hashed with the currently selected scheme.
* An `AddressVerificationEvent` is triggered when an `IAddress` is verified
diff --git a/src/mailman/version.py b/src/mailman/version.py
index 4968791b2..ad0c83218 100644
--- a/src/mailman/version.py
+++ b/src/mailman/version.py
@@ -18,8 +18,8 @@
"""Mailman version strings."""
# Mailman version.
-VERSION = '3.0.0b2'
-CODENAME = "Freeze"
+VERSION = '3.0.0b2+'
+CODENAME = 'Here Again'
# 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 = 2
+REL_SERIAL = 3
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
(REL_LEVEL << 4) | (REL_SERIAL << 0))