diff options
author | tkikuchi <> | 2004-12-01 05:15:46 +0000 |
---|---|---|
committer | tkikuchi <> | 2004-12-01 05:15:46 +0000 |
commit | ea3f4bb22c345eba4d0820c3b27d12f94a3f9c95 (patch) | |
tree | cdb647bdff2fc475bd9a49eb1c7aa5b15ce6a9a3 /Mailman | |
parent | 983c1a3fb43179ad781cee37cc6c9d8a3d4aa178 (diff) | |
download | mailman2-ea3f4bb22c345eba4d0820c3b27d12f94a3f9c95.tar.gz mailman2-ea3f4bb22c345eba4d0820c3b27d12f94a3f9c95.tar.xz mailman2-ea3f4bb22c345eba4d0820c3b27d12f94a3f9c95.zip |
Increment micro version to prepare for the 2.1.6 release.
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 f7dad1ea..badd8bf8 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.5+" +VERSION = "2.1.6a" # 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 = ALPHA # at most 15 beta releases! -REL_SERIAL = 0 +REL_SERIAL = 1 HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) |