Skip to content

Commit db94386

Browse files
committed
increment version to v0.13
build.gradle file updated to change the name of the JAR file that is built with gradle main/ScriptManager updated to add a version to the CLI. (Run jar with `-V` option to view version) main/ScriptManagerGUI updated to increment the version string used for the main GUI window title.
1 parent 092f5ff commit db94386

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ apply plugin: 'eclipse'
99

1010
sourceSets.main.java.srcDirs = ['src']
1111
mainClassName = "main.ScriptManager"
12-
version = 'v0.12-devCLI'
12+
version = 'v0.13'
1313
sourceCompatibility = 1.8
1414
targetCompatibility = 1.8
1515

src/main/ScriptManager.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
Read_AnalysisCLI.class,
7171
Sequence_AnalysisCLI.class
7272
},
73+
version = "ScriptManager-v0.13",
7374
mixinStandardHelpOptions = true,
7475
description = "Choose a tool directory from below to see more command-line tool options.",
7576
exitCodeOnInvalidInput = 1,
@@ -216,4 +217,4 @@ class Read_AnalysisCLI extends SubcommandCLI {}
216217
SearchMotifCLI.class
217218
},
218219
description = "Includes tools like DNAShapefromBEDCLI, DNAShapefromFASTACLI, FASTAExtractCLI, RandomizeFASTACLI, and SearchMotifCLI.")
219-
class Sequence_AnalysisCLI extends SubcommandCLI {}
220+
class Sequence_AnalysisCLI extends SubcommandCLI {}

src/main/ScriptManagerGUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
import window_interface.Figure_Generation.MergeHeatMapWindow;
5656

5757
public class ScriptManagerGUI {
58-
public static final String VERSION = "0.12-dev";
58+
public static final String VERSION = "0.13";
5959

6060
private JFrame frmScriptManager;
6161
/**

0 commit comments

Comments
 (0)