Version.py (mailman-2.1.38.tgz) | : | Version.py (mailman-2.1.39.tgz) | ||
---|---|---|---|---|
skipping to change at line 19 | skipping to change at line 19 | |||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
# GNU General Public License for more details. | # GNU General Public License for more details. | |||
# | # | |||
# You should have received a copy of the GNU General Public License | # You should have received a copy of the GNU General Public License | |||
# along with this program; if not, write to the Free Software | # along with this program; if not, write to the Free Software | |||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, | |||
# USA. | # USA. | |||
# Mailman version | # Mailman version | |||
VERSION = '2.1.38' | VERSION = '2.1.39' | |||
# 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 | ALPHA = 0xa | |||
BETA = 0xb | BETA = 0xb | |||
GAMMA = 0xc | GAMMA = 0xc | |||
# release candidates | # release candidates | |||
RC = GAMMA | RC = GAMMA | |||
FINAL = 0xf | FINAL = 0xf | |||
MAJOR_REV = 2 | MAJOR_REV = 2 | |||
MINOR_REV = 1 | MINOR_REV = 1 | |||
MICRO_REV = 38 | MICRO_REV = 39 | |||
REL_LEVEL = FINAL | REL_LEVEL = FINAL | |||
# at most 15 beta releases! | # at most 15 beta releases! | |||
REL_SERIAL = 0 | REL_SERIAL = 0 | |||
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | | HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | | |||
(REL_LEVEL << 4) | (REL_SERIAL << 0)) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) | |||
# config.pck schema version number | # config.pck schema version number | |||
DATA_FILE_VERSION = 112 | DATA_FILE_VERSION = 112 | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |