diff options
| -rw-r--r-- | Mailman/Defaults.py.in | 5 | ||||
| -rw-r--r-- | Mailman/Version.py | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index a97e2bfdf..938fefbd3 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -341,7 +341,4 @@ PUBLIC_ARCHIVE_FILE_DIR = os.path.join(PREFIX, 'archives/public') PRIVATE_ARCHIVE_FILE_DIR = os.path.join(PREFIX, 'archives/private') # The Mailman version -from Version import VERSION - -# Data file version number -DATA_FILE_VERSION = 15 +from Version import VERSION, DATA_FILE_VERSION diff --git a/Mailman/Version.py b/Mailman/Version.py index e78800cb3..b3760dd8b 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -14,4 +14,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -VERSION = '1.2 (experimental)' +# Mailman version +VERSION = '1.2 (beta 1)' + +# Data file version number, for changes to the schema +DATA_FILE_VERSION = 17 |
