diff --git a/README.md b/README.md index 1848788..ef7ba9e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A framework for creating shells/CLIs for an application ### SBT ``` -"com.nthportal" %% "app-shell" % "1.1.0" +"com.nthportal" %% "app-shell" % "1.2.0" ``` ### Maven @@ -17,6 +17,6 @@ A framework for creating shells/CLIs for an application com.nthportal app-shell_2.12 - 1.1.0 + 1.2.0 ``` diff --git a/build.sbt b/build.sbt index e00ecbc..3b0b805 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ name := "app-shell" description := "A framework for creating shells/CLIs for an application." val rawVersion = "1.2.0" -isSnapshot := true +isSnapshot := false version := rawVersion + {if (isSnapshot.value) "-SNAPSHOT" else ""} scalaVersion := "2.12.1"