~barry/mailman/events-and-web

« back to all changes in this revision

Viewing changes to src/mailman/version.py

  • Committer: Barry Warsaw
  • Date: 2012-09-08 23:30:06 UTC
  • Revision ID: barry@list.org-20120908233006-k4rdstn83ofl481w
Bump versions and code name for 3.0b3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
"""Mailman version strings."""
19
19
 
20
20
# Mailman version.
21
 
VERSION = '3.0.0b2'
22
 
CODENAME = "Freeze"
 
21
VERSION = '3.0.0b2+'
 
22
CODENAME = 'Here Again'
23
23
 
24
24
# And as a hex number in the manner of PY_VERSION_HEX.
25
25
ALPHA = 0xa
34
34
MICRO_REV = 0
35
35
REL_LEVEL = BETA
36
36
# At most 15 beta releases!
37
 
REL_SERIAL = 2
 
37
REL_SERIAL = 3
38
38
 
39
39
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
40
40
               (REL_LEVEL << 4)  | (REL_SERIAL << 0))