/*
* This software is distributed under the terms of the FSF
* Gnu Lesser General Public License (see lgpl.txt).
*
* This program is distributed WITHOUT ANY WARRANTY. See the
* GNU General Public License for more details.
*/
package com.scooterframework.admin;
/**
* Version class loads version information.
*
* @author (Fei) John Chen
*/
public class Version {
/**
* Current version number. Framework release manager must update this
* string in order to record the latest version.
*
* <p>
* Format of the version number: {major}.{minor}.{tiny} (build #)
* </p>
*/
static final String CURRENT_VERSION = "1.3.0 (build 1217) 2012-02-10";
}