mirror of
https://github.com/correl/mage.git
synced 2024-11-24 19:19:56 +00:00
Prepare new release
This commit is contained in:
parent
5e91099f62
commit
9baa36c2e3
1 changed files with 2 additions and 2 deletions
|
@ -10,14 +10,14 @@ import java.io.Serializable;
|
|||
public class MageVersion implements Serializable, Comparable<MageVersion> {
|
||||
|
||||
// version must be compatible with maven version numbers
|
||||
// launcher can update only to newest version
|
||||
// launcher can update only to the newest version
|
||||
// example: 1.4.48-V1-beta3
|
||||
// * 1.4.48 compares as numbers
|
||||
// * V1-beta3 is qualifier and compares as string
|
||||
// * launcher gives priority to 1.4.48 instead 1.4.48-any-text, so don't use empty release info
|
||||
public static final int MAGE_VERSION_MAJOR = 1;
|
||||
public static final int MAGE_VERSION_MINOR = 4;
|
||||
public static final int MAGE_VERSION_RELEASE = 48;
|
||||
public static final int MAGE_VERSION_RELEASE = 49;
|
||||
public static final String MAGE_VERSION_RELEASE_INFO = "V2"; // V1 for releases, V1-beta3 for betas
|
||||
|
||||
// strict mode
|
||||
|
|
Loading…
Reference in a new issue