diff options
author | Mark Sapiro <mark@msapiro.net> | 2008-03-13 16:28:24 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2008-03-13 16:28:24 -0700 |
commit | 6664a56036748d4cd2290449a4bab7a4ab9d1eaa (patch) | |
tree | 699d6827b86b5c42330330e0396ba980d6c24e67 | |
parent | 9489583551db1fd53c95feaadf218d8636da0fc5 (diff) | |
download | mailman2-6664a56036748d4cd2290449a4bab7a4ab9d1eaa.tar.gz mailman2-6664a56036748d4cd2290449a4bab7a4ab9d1eaa.tar.xz mailman2-6664a56036748d4cd2290449a4bab7a4ab9d1eaa.zip |
Updated Version.py for 2.1.10b4.
Updated release tag in NEWS for 2.1.10b4.
Added note to UPGRADING about the necessity to reset list passwords
after a 2.0.x to 2.1.x upgrade.
-rw-r--r-- | Mailman/Version.py | 4 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | UPGRADING | 5 |
3 files changed, 8 insertions, 3 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py index a1a04d3c..f7e03e8e 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -16,7 +16,7 @@ # USA. # Mailman version -VERSION = '2.1.10b3' +VERSION = '2.1.10b4' # And as a hex number in the manner of PY_VERSION_HEX ALPHA = 0xa @@ -31,7 +31,7 @@ MINOR_REV = 1 MICRO_REV = 10 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)) @@ -4,7 +4,7 @@ Copyright (C) 1998-2007 by the Free Software Foundation, Inc. Here is a history of user visible changes to Mailman. -2.1.10rc1 (xx-xxx-2008) +2.1.10b4 (13-Mar-2008) Security @@ -99,6 +99,11 @@ UPGRADING FROM 2.0.x to 2.1 To regenerate your aliases, use the bin/genaliases script. + IMPORTANT: The encryption algorithm for list admin passwords has + changed which means that after upgrading from 2.0.x to 2.1.x, list + passwords will have to be reset. There is a new bin/change_pw tool + to help with this. + Mailman 2.1 introduces multilingual (a.k.a. internationalization or i18n) support. Previously only one language per list was supported, and it was assumed that this language would be English. |