diff --git a/build.sbt b/build.sbt index ff8fdb2e4..b8b058371 100644 --- a/build.sbt +++ b/build.sbt @@ -122,9 +122,9 @@ lazy val root = Project(id="fgbio", base=file(".")) "org.scala-lang" % "scala-reflect" % scalaVersion.value, "org.scala-lang" % "scala-compiler" % scalaVersion.value, "org.scala-lang.modules" %% "scala-xml" % "1.0.6", - "com.fulcrumgenomics" %% "commons" % "0.5.0-a1f084e-SNAPSHOT", - "com.fulcrumgenomics" %% "sopt" % "0.4.0", - "com.github.samtools" % "htsjdk" % "2.13.0" excludeAll(htsjdkExcludes: _*), + "com.fulcrumgenomics" %% "commons" % "0.5.0", + "com.fulcrumgenomics" %% "sopt" % "0.5.0", + "com.github.samtools" % "htsjdk" % "2.14.3" excludeAll(htsjdkExcludes: _*), "net.jafama" % "jafama" % "2.1.0", "org.apache.commons" % "commons-math3" % "3.6.1", "com.beachape" %% "enumeratum" % "1.5.12", diff --git a/version.sbt b/version.sbt index 28c78e28f..1040c115e 100644 --- a/version.sbt +++ b/version.sbt @@ -3,5 +3,5 @@ gitHeadCommitSha in ThisBuild := scala.sys.process.Process("git rev-parse --shor // *** IMPORTANT *** // One of the two "version" lines below needs to be uncommented. -// version in ThisBuild := "0.6.0" // the release version -version in ThisBuild := s"0.6.0-${gitHeadCommitSha.value}-SNAPSHOT" // the snapshot version \ No newline at end of file +version in ThisBuild := "0.6.0" // the release version +// version in ThisBuild := s"0.7.0-${gitHeadCommitSha.value}-SNAPSHOT" // the snapshot version