diff options
author | Mark Sapiro <mark@msapiro.net> | 2008-06-30 08:32:26 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2008-06-30 08:32:26 -0700 |
commit | 3f53fd904700c5878733d39bec5aac89070257f5 (patch) | |
tree | c5d3827444c7c78e8f17d1bb52aefe2c56a84270 /Mailman/Version.py | |
parent | 262a617078d67cde8c30624272fa4ebefe2e572f (diff) | |
download | mailman2-3f53fd904700c5878733d39bec5aac89070257f5.tar.gz mailman2-3f53fd904700c5878733d39bec5aac89070257f5.tar.xz mailman2-3f53fd904700c5878733d39bec5aac89070257f5.zip |
- Bumped version to 2.1.11.
- Changed MailList.Create() to check that list name contains only characters
that match the new mm_cfg.ACCEPTABLE_LISTNAME_CHARACTERS.
- Changed MTA.Utils.makealiases() to escape a few characters in the list name
in the pipe command.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Version.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py index 65738b6b..4a559213 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -16,7 +16,7 @@ # USA. # Mailman version -VERSION = '2.1.11rc2' +VERSION = '2.1.11' # And as a hex number in the manner of PY_VERSION_HEX ALPHA = 0xa @@ -29,9 +29,9 @@ FINAL = 0xf MAJOR_REV = 2 MINOR_REV = 1 MICRO_REV = 11 -REL_LEVEL = GAMMA +REL_LEVEL = FINAL # at most 15 beta releases! -REL_SERIAL = 2 +REL_SERIAL = 0 HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) |