Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Jan 23, 2008
1 parent 1f7dc5d commit ec7c9e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions symmetric/src/main/java/org/jumpmind/symmetric/Version.java
Expand Up @@ -31,11 +31,11 @@ final public class Version {

public static final int MAJOR = 1;

public static final int MINOR = 2;
public static final int MINOR = 3;

public static final int PATCH = 0;

public static final String VERSION = MAJOR + "." + MINOR + "." + PATCH;
public static final String VERSION = MAJOR + "." + MINOR + "." + PATCH + "-SNAPSHOT";

public static int[] parseVersion(String version) {
int[] versions = new int[3];
Expand Down

0 comments on commit ec7c9e3

Please sign in to comment.