diff options
| author | Barry Warsaw | 2012-09-08 19:30:06 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2012-09-08 19:30:06 -0400 |
| commit | d20bb305a007f156ded813f5823fcf7ded66075b (patch) | |
| tree | d9fb0d4080548ffde8ee2c93abf19cdb128b34df /src | |
| parent | 638823c69cc6cd5d56f23332a1787fb2e9b27e62 (diff) | |
| download | mailman-d20bb305a007f156ded813f5823fcf7ded66075b.tar.gz mailman-d20bb305a007f156ded813f5823fcf7ded66075b.tar.zst mailman-d20bb305a007f156ded813f5823fcf7ded66075b.zip | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/mailman/docs/NEWS.rst | 7 | ||||
| -rw-r--r-- | src/mailman/version.py | 6 |
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)) |
