From bec1593d0c8b00305612676a1ce23b7bf510c54a Mon Sep 17 00:00:00 2001 From: Matthew de Detrich Date: Wed, 10 Aug 2016 14:01:13 +0200 Subject: [PATCH 1/3] Bump Scala and Play versions --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index ae59b0d..72a2e09 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ import scalariform.formatter.preferences._ val commonSettings = Seq( organization := "org.zalando", version := "0.2", - scalaVersion := "2.11.7", + scalaVersion := "2.11.8", scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8"), publishTo := { val nexus = "https://oss.sonatype.org/" @@ -24,7 +24,7 @@ val commonSettings = Seq( ) ) -val playFrameworkVersion = "2.5.1" +val playFrameworkVersion = "2.5.4" lazy val testDependencies = Seq( From e2265fad9752cc30a1661f7bb387dd41208e290d Mon Sep 17 00:00:00 2001 From: Matthew de Detrich Date: Wed, 10 Aug 2016 19:54:54 +0200 Subject: [PATCH 2/3] Bumped version --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 72a2e09..749f9a7 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ import scalariform.formatter.preferences._ val commonSettings = Seq( organization := "org.zalando", - version := "0.2", + version := "0.2.1", scalaVersion := "2.11.8", scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8"), publishTo := { From 4325ab8adebfdce847f00a2791ac83dd40ccf49c Mon Sep 17 00:00:00 2001 From: Raymond Chenon Date: Wed, 16 Nov 2016 14:26:35 +0100 Subject: [PATCH 3/3] set library to 0.2.1 update Play framework version --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 749f9a7..3892e59 100644 --- a/build.sbt +++ b/build.sbt @@ -24,7 +24,7 @@ val commonSettings = Seq( ) ) -val playFrameworkVersion = "2.5.4" +val playFrameworkVersion = "2.5.9" lazy val testDependencies = Seq( @@ -45,7 +45,7 @@ lazy val playDependencies = lazy val root = (project in file(".")) .settings(commonSettings: _*) .settings(name := "play-Zhewbacca") - .settings(version := "0.1.0") + .settings(version := "0.2.1") .settings(libraryDependencies ++= (testDependencies ++ playDependencies)) .settings(parallelExecution in Test := false)