From a1ac483c9a7f0ca8e8197acf8880bcf4618007c2 Mon Sep 17 00:00:00 2001 From: NthPortal Date: Tue, 31 Jan 2017 23:24:12 -0500 Subject: [PATCH] Bump version for release --- README.md | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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"