Skip to content

Commit

Permalink
use major.minor.patch
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Oct 26, 2007
1 parent fc7f197 commit 5960f4b
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions symmetric/src/main/java/org/jumpmind/symmetric/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,9 @@ final public class Version {

public static final int MAJOR = 1;

public static final int FEATURE = 0;

public static final int MILESTONE = 0;
public static final int MINOR = 0;

public static final int PATCH = 0;

public static final String VERSION = MAJOR + "." + FEATURE + "."
+ MILESTONE + "." + PATCH;
public static final String VERSION = MAJOR + "." + MINOR + "." + PATCH;
}

0 comments on commit 5960f4b

Please sign in to comment.