diff options
author | bwarsaw <> | 2005-02-17 17:52:20 +0000 |
---|---|---|
committer | bwarsaw <> | 2005-02-17 17:52:20 +0000 |
commit | 4fba20e7c159090641fb3aea3efc903474b806ca (patch) | |
tree | 4577caa9d6eabfa4b83fe522884200c2e2b8bdf4 /Mailman | |
parent | 18fdecfb201a1c7a62b4d5780e45b1ad345faa55 (diff) | |
download | mailman2-4fba20e7c159090641fb3aea3efc903474b806ca.tar.gz mailman2-4fba20e7c159090641fb3aea3efc903474b806ca.tar.xz mailman2-4fba20e7c159090641fb3aea3efc903474b806ca.zip |
Bump to 2.1.6b4. Note that I rewrote the index.html page slightly, both to
indicate that 2.1.5 is still the current stable release and to point people at
the security page.
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Version.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py index 7fedae32..7c08e34e 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -15,7 +15,7 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Mailman version -VERSION = "2.1.6b3" +VERSION = "2.1.6b4" # And as a hex number in the manner of PY_VERSION_HEX ALPHA = 0xa @@ -30,7 +30,7 @@ MINOR_REV = 1 MICRO_REV = 6 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)) |