From f5f3d876552834807fd138cbfa9a8a3d88e88016 Mon Sep 17 00:00:00 2001 From: tfenne Date: Tue, 6 Aug 2019 13:29:11 -0600 Subject: [PATCH] Prep for the 1.0.0 release. --- README.md | 2 +- build.sbt | 2 +- version.sbt | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a283852..aadf0aa 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ It has the following high level features: To use sopt you will need to add it to your build. For sbt this looks like: ```scala -libraryDependencies += "com.fulcrumgenomics" %% "sopt" % "0.7.0" +libraryDependencies += "com.fulcrumgenomics" %% "sopt" % "1.0.0" ``` You'll then need the following: diff --git a/build.sbt b/build.sbt index 5795e10..d347c36 100644 --- a/build.sbt +++ b/build.sbt @@ -116,7 +116,7 @@ lazy val root = Project(id="sopt", base=file(".")) .settings( libraryDependencies ++= Seq( "org.scala-lang" % "scala-reflect" % scalaVersion.value, - "com.fulcrumgenomics" %% "commons" % "0.8.0-c052fc9-SNAPSHOT", + "com.fulcrumgenomics" %% "commons" % "1.0.0", "com.vladsch.flexmark" % "flexmark" % "0.18.5", //---------- Test libraries -------------------// diff --git a/version.sbt b/version.sbt index 6b96c2e..bc0a1ef 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.7.0" // the release version -version in ThisBuild := s"0.8.0-${gitHeadCommitSha.value}-SNAPSHOT" // the snapshot version +version in ThisBuild := "1.0.0" // the release version +// version in ThisBuild := s"0.8.0-${gitHeadCommitSha.value}-SNAPSHOT" // the snapshot version