diff options
author | Mark Sapiro <mark@msapiro.net> | 2013-07-18 20:49:20 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2013-07-18 20:49:20 -0700 |
commit | 9b8cf403719c083270b2d51a0aac22e120355522 (patch) | |
tree | 3aff142848d1c3d60aa044e29c6d1c549174fb91 /Mailman/Version.py | |
parent | cb2733e029d419904f0fc488f5989beb3aa3ce71 (diff) | |
download | mailman2-9b8cf403719c083270b2d51a0aac22e120355522.tar.gz mailman2-9b8cf403719c083270b2d51a0aac22e120355522.tar.xz mailman2-9b8cf403719c083270b2d51a0aac22e120355522.zip |
First cut at the author_is_list feature.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Version.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py index 801a614a..bda02592 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2011 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2013 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -37,7 +37,7 @@ HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) # config.pck schema version number -DATA_FILE_VERSION = 100 +DATA_FILE_VERSION = 101 # qfile/*.db schema version number QFILE_SCHEMA_VERSION = 3 |