Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Karasiq committed Jun 14, 2018
1 parent 02f44b7 commit be1eda3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import scala.io.StdIn


lazy val commonSettings = Seq(
organization := "com.github.karasiq",
Expand Down Expand Up @@ -75,9 +75,10 @@ lazy val releaseSettings = Seq(
releaseStepCommand("sonatypeRelease"),
releaseStepCommand("torrentstream-server/universal:packageBin"),
// releaseStepCommand("torrentstream-server/windows:packageBin"),
releaseStepCommand("torrentstream-server/githubRelease"),
commitReleaseVersion,
tagRelease,
pushChanges,
releaseStepCommand("torrentstream-server/githubRelease"),
setNextVersion,
commitNextVersion,
pushChanges
Expand Down Expand Up @@ -140,7 +141,7 @@ lazy val packageUploadSettings = Seq(
// target.value / "windows" / s"$baseName.msi"
),
ghreleaseNotes := { tagName
StdIn.readLine(s"Input release notes for $tagName: \n")
SimpleReader.readLine(s"Input release notes for $tagName: ").getOrElse("")
}
// ghreleaseTitle := { tagName ⇒ tagName.toString }
)
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "1.0.7"
version in ThisBuild := "1.0.8"

0 comments on commit be1eda3

Please sign in to comment.