~tgc/mailman/2.1-da

« back to all changes in this revision

Viewing changes to Mailman/Version.py

  • Committer: Mark Sapiro
  • Date: 2013-10-16 14:06:16 UTC
  • Revision ID: mark@msapiro.net-20131016140616-fx47gi2p2a58aii6
Tags: 2.1.16
Tagging branch with: 2.1.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# USA.
17
17
 
18
18
# Mailman version
19
 
VERSION = '2.1.16rc3'
 
19
VERSION = '2.1.16'
20
20
 
21
21
# And as a hex number in the manner of PY_VERSION_HEX
22
22
ALPHA = 0xa
29
29
MAJOR_REV = 2
30
30
MINOR_REV = 1
31
31
MICRO_REV = 16
32
 
REL_LEVEL = GAMMA
 
32
REL_LEVEL = FINAL
33
33
# at most 15 beta releases!
34
 
REL_SERIAL = 3
 
34
REL_SERIAL = 0
35
35
 
36
36
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
37
37
               (REL_LEVEL << 4)  | (REL_SERIAL << 0))