Skip to content

Commit

Permalink
new release after merging decompile optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
truj committed Apr 10, 2021
1 parent 04a8851 commit 9cc7145
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 = 2;
public static final int VERSION_MINOR = 3;

/** UNIX timestamp of the last commit */
public static final int COMMIT_TIME = 1616951739;
public static final int COMMIT_TIME = 1618087070;

/** 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 9cc7145

Please sign in to comment.