summaryrefslogtreecommitdiff
path: root/src/mailman/version.py
diff options
context:
space:
mode:
authorBarry Warsaw2012-03-13 21:03:01 -0700
committerBarry Warsaw2012-03-13 21:03:01 -0700
commit80ac803cb2816dde0503671fd117ed134680de53 (patch)
treeed2d40855f6b45dedf421a7a98bd83d95b6e3b40 /src/mailman/version.py
parent07685642934fe934098927a9a9d20c17080f3dab (diff)
downloadmailman-80ac803cb2816dde0503671fd117ed134680de53.tar.gz
mailman-80ac803cb2816dde0503671fd117ed134680de53.tar.zst
mailman-80ac803cb2816dde0503671fd117ed134680de53.zip
Diffstat (limited to 'src/mailman/version.py')
-rw-r--r--src/mailman/version.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mailman/version.py b/src/mailman/version.py
index 00c5b6c7a..8f13f8f51 100644
--- a/src/mailman/version.py
+++ b/src/mailman/version.py
@@ -17,15 +17,15 @@
"""Mailman version strings."""
-# Mailman version
+# Mailman version.
VERSION = '3.0.0a8+'
CODENAME = "The Twilight Zone"
-# And as a hex number in the manner of PY_VERSION_HEX
+# And as a hex number in the manner of PY_VERSION_HEX.
ALPHA = 0xa
BETA = 0xb
GAMMA = 0xc
-# release candidates
+# Release candidates.
RC = GAMMA
FINAL = 0xf
@@ -33,16 +33,16 @@ MAJOR_REV = 3
MINOR_REV = 0
MICRO_REV = 0
REL_LEVEL = BETA
-# at most 15 beta releases!
+# At most 15 beta releases!
REL_SERIAL = 1
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
(REL_LEVEL << 4) | (REL_SERIAL << 0))
-# qfile/*.db schema version number
+# queue/*.pck schema version number.
QFILE_SCHEMA_VERSION = 3
-# Printable version string used by command line scripts
+# Printable version string used by command line scripts.
MAILMAN_VERSION = 'GNU Mailman ' + VERSION
MAILMAN_VERSION_FULL = MAILMAN_VERSION + ' (' + CODENAME + ')'