Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
truj committed May 29, 2020
1 parent 20e58ed commit ec62f85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified midica.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions src/org/midica/Midica.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ public class Midica {
* After switching to a new major version, this has to be set to "-1" manually, so that
* precommit.pl starts with "0" again.
*/
public static final int VERSION_MINOR = 1;
public static final int VERSION_MINOR = 2;

/** UNIX timestamp of the last commit */
public static final int COMMIT_TIME = 1590729348;
public static final int COMMIT_TIME = 1590729547;

/** Branch name. Automatically changed by precommit.pl */
public static final String BRANCH = "decompile-optimization";
public static final String BRANCH = "master";

/** Full version string. */
public static final String VERSION = VERSION_MAJOR + "." + VERSION_MINOR + ("master".equals(BRANCH) ? "" : "-" + BRANCH);
Expand Down

0 comments on commit ec62f85

Please sign in to comment.