Skip to content

Commit 02fc12a

Browse files
committed
update version to v0.14
update Gradle build file (for JAR name) and `objects.ToolDescriptions` (for main Window display version) to increment version
1 parent fe92e4f commit 02fc12a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
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.13-dev'
12+
version = 'v0.14'
1313
sourceCompatibility = 1.8
1414
targetCompatibility = 1.8
1515

@@ -20,7 +20,7 @@ jar {
2020
baseName = "ScriptManager"
2121

2222
manifest {
23-
attributes 'ScriptManager-Title': baseName,
23+
attributes 'ScriptManager-Title': baseName,
2424
'ScriptManager-Version': version,
2525
'Main-Class': mainClassName
2626
}
@@ -31,11 +31,11 @@ task fatJar(type: Jar) {
3131
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
3232

3333
manifest {
34-
attributes 'ScriptManager-Title': 'Gradle jar of ScriptManager',
34+
attributes 'ScriptManager-Title': 'Gradle jar of ScriptManager',
3535
'ScriptManager-Version': version,
3636
'Main-Class': mainClassName
3737
}
38-
38+
3939
baseName = 'ScriptManager' + version
4040
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
4141
with jar

src/objects/ToolDescriptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package objects;
22

33
public class ToolDescriptions {
4-
public static final String VERSION = "0.13-dev";
4+
public static final String VERSION = "0.14";
55

66
// BAM Statistics
77
public static final String se_stat_description = "Output BAM Header including alignment statistics and parameters given any indexed (BAI) BAM File.";

0 commit comments

Comments
 (0)