Skip to content

Commit

Permalink
0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nh13 committed Apr 11, 2024
1 parent 30baecb commit 52885ff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@ object tools extends CommonModule with PublishModule with ReleaseModule {
override def mainClass = Some("com.fulcrumgenomics.sv.cmdline.SvMain")
override def artifactName = "fgsv"
def gitHash = Process("git rev-parse --short HEAD").lazyLines.head
def publishVersion = s"0.1.0-${gitHash}-SNAPSHOT"
// This is the current version (use for the next release)
def curVersion = s"0.2.0"
// true if this is a development version, false if this is a release version
def isDevelopment = false
def publishVersion = if (isDevelopment) s"${curVersion}-${gitHash}-SNAPSHOT" else s"${curVersion}"
def pomSettings = PomSettings(
description = artifactName(),
organization = "com.fulcrumgenomics",
Expand Down

0 comments on commit 52885ff

Please sign in to comment.