Skip to content

Commit

Permalink
Prep for the 1.0.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfenne committed Aug 6, 2019
1 parent 6330673 commit f5f3d87
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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 -------------------//
Expand Down
4 changes: 2 additions & 2 deletions version.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f5f3d87

Please sign in to comment.