Skip to content

Commit

Permalink
update version to v0.14
Browse files Browse the repository at this point in the history
update Gradle build file (for JAR name) and `objects.ToolDescriptions` (for main Window display version) to increment version
  • Loading branch information
owlang committed Oct 25, 2022
1 parent fe92e4f commit 02fc12a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ apply plugin: 'eclipse'

sourceSets.main.java.srcDirs = ['src']
mainClassName = "main.ScriptManager"
version = 'v0.13-dev'
version = 'v0.14'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand All @@ -20,7 +20,7 @@ jar {
baseName = "ScriptManager"

manifest {
attributes 'ScriptManager-Title': baseName,
attributes 'ScriptManager-Title': baseName,
'ScriptManager-Version': version,
'Main-Class': mainClassName
}
Expand All @@ -31,11 +31,11 @@ task fatJar(type: Jar) {
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'

manifest {
attributes 'ScriptManager-Title': 'Gradle jar of ScriptManager',
attributes 'ScriptManager-Title': 'Gradle jar of ScriptManager',
'ScriptManager-Version': version,
'Main-Class': mainClassName
}

baseName = 'ScriptManager' + version
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
Expand Down
2 changes: 1 addition & 1 deletion src/objects/ToolDescriptions.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package objects;

public class ToolDescriptions {
public static final String VERSION = "0.13-dev";
public static final String VERSION = "0.14";

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

0 comments on commit 02fc12a

Please sign in to comment.