Skip to content

Commit

Permalink
Bump version to 17.1.0 (#116)
Browse files Browse the repository at this point in the history
Synchronize build.gradle and JSyn.java version numbers

Co-authored-by: Phil Burk <philburk@google.com>
  • Loading branch information
philburk and Phil Burk authored Apr 11, 2023
1 parent 90db548 commit 2b7829d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'com.jsyn'
version = '17.0.0-SNAPSHOT'
version = '17.1.0'
sourceCompatibility = '1.8'
mainClassName = 'com.jsyn.apps.AboutJSyn'

Expand Down
12 changes: 6 additions & 6 deletions src/main/java/com/jsyn/JSyn.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@
*/
public class JSyn {
// Update these for every release.
private final static int VERSION_MAJOR = 16;
private final static int VERSION_MINOR = 8;
private final static int VERSION_REVISION = 1;
public final static int BUILD_NUMBER = 464;
private final static long BUILD_TIME = new GregorianCalendar(2017,
GregorianCalendar.OCTOBER, 16).getTime().getTime();
private final static int VERSION_MAJOR = 17;
private final static int VERSION_MINOR = 1;
private final static int VERSION_REVISION = 0;
public final static int BUILD_NUMBER = 465;
private final static long BUILD_TIME = new GregorianCalendar(2023,
GregorianCalendar.APRIL, 10).getTime().getTime();

public final static String VERSION = VERSION_MAJOR + "." + VERSION_MINOR + "."
+ VERSION_REVISION;
Expand Down

0 comments on commit 2b7829d

Please sign in to comment.