diff options
author | Mark Sapiro <msapiro@value.net> | 2014-04-17 08:23:56 -0700 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2014-04-17 08:23:56 -0700 |
commit | 129c7c266c2d60ee5165f4f31e6d336b997ad8fa (patch) | |
tree | d5d60dd3be2ce6572cce1b4e667f562a3ce6a928 /Mailman/Version.py | |
parent | 661d0ef0bea142a00148ebb3246f4c3351db019d (diff) | |
download | mailman2-129c7c266c2d60ee5165f4f31e6d336b997ad8fa.tar.gz mailman2-129c7c266c2d60ee5165f4f31e6d336b997ad8fa.tar.xz mailman2-129c7c266c2d60ee5165f4f31e6d336b997ad8fa.zip |
Bumped branch version to: 2.1.18rc1
Diffstat (limited to '')
-rw-r--r-- | Mailman/Version.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py index 185ff888..37124a9b 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -16,7 +16,7 @@ # USA. # Mailman version -VERSION = '2.1.17' +VERSION = '2.1.18rc1' # And as a hex number in the manner of PY_VERSION_HEX ALPHA = 0xa @@ -28,10 +28,10 @@ FINAL = 0xf MAJOR_REV = 2 MINOR_REV = 1 -MICRO_REV = 17 -REL_LEVEL = FINAL +MICRO_REV = 18 +REL_LEVEL = GAMMA # 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)) |