diff options
| -rw-r--r-- | src/mailman/docs/NEWS.rst | 5 | ||||
| -rw-r--r-- | src/mailman/version.py | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/mailman/docs/NEWS.rst b/src/mailman/docs/NEWS.rst index f0ab8b10c..b22bc6ede 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 4 -- "Time and Motion" +=============================== +(2013-XX-XX) + + 3.0 beta 3 -- "Here Again" ========================== (2012-12-31) diff --git a/src/mailman/version.py b/src/mailman/version.py index 0d67536ec..b000dfdb5 100644 --- a/src/mailman/version.py +++ b/src/mailman/version.py @@ -18,8 +18,8 @@ """Mailman version strings.""" # Mailman version. -VERSION = '3.0.0b3' -CODENAME = 'Here Again' +VERSION = '3.0.0b3+' +CODENAME = 'Time and Motion' # 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 = 3 +REL_SERIAL = 4 HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) |
