diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mailman/docs/NEWS.rst | 4 | ||||
| -rw-r--r-- | src/mailman/version.py | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/mailman/docs/NEWS.rst b/src/mailman/docs/NEWS.rst index ebe90a6df..6248d0d57 100644 --- a/src/mailman/docs/NEWS.rst +++ b/src/mailman/docs/NEWS.rst @@ -8,8 +8,8 @@ Copyright (C) 1998-2015 by the Free Software Foundation, Inc. Here is a history of user visible changes to Mailman. -3.0 beta 6 -- "Show Don't Tell" -=============================== +3.0 rc 1 -- "Show Don't Tell" +============================= (2015-XX-XX) Architecture diff --git a/src/mailman/version.py b/src/mailman/version.py index 42089aff5..4904454ad 100644 --- a/src/mailman/version.py +++ b/src/mailman/version.py @@ -18,7 +18,7 @@ """Mailman version strings.""" # Mailman version. -VERSION = '3.0.0b6' +VERSION = '3.0.0rc1' CODENAME = "Show Don't Tell" # And as a hex number in the manner of PY_VERSION_HEX. @@ -32,9 +32,9 @@ FINAL = 0xf MAJOR_REV = 3 MINOR_REV = 0 MICRO_REV = 0 -REL_LEVEL = BETA +REL_LEVEL = RC # At most 15 beta releases! -REL_SERIAL = 6 +REL_SERIAL = 1 HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) |
