Skip to content

Commit

Permalink
Prepare new release
Browse files Browse the repository at this point in the history
  • Loading branch information
JayDi85 committed Jul 31, 2021
1 parent 5e91099 commit 9baa36c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Mage.Common/src/main/java/mage/utils/MageVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
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
Expand Down

0 comments on commit 9baa36c

Please sign in to comment.