Skip to content

Commit 08e1315

Browse files
committed
Default to snapshot version in dev
1 parent 949cb21 commit 08e1315

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
name := "udash-jquery"
44

55
inThisBuild(Seq(
6-
version := "3.0.3",
6+
version := sys.env.get("TRAVIS_TAG").filter(_.startsWith("v")).map(_.drop(1)).getOrElse("3.0.0-SNAPSHOT"),
77
organization := "io.udash",
8+
cancelable := true,
89
))
910

1011
val commonSettings = Seq(

0 commit comments

Comments
 (0)