From 9b6954c5b918de9f54b3bac73c3fbde1d1139ec1 Mon Sep 17 00:00:00 2001 From: Bas Beelen Date: Mon, 28 May 2018 12:02:33 +0200 Subject: [PATCH] Upgrade to latest dependencies --- build.sbt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 42a160f..9281f41 100644 --- a/build.sbt +++ b/build.sbt @@ -41,7 +41,7 @@ lazy val commonSettings: Seq[Setting[_]] = Seq( s"git@github.com:${bintrayOrganization.value.get}/${name.value}.git" ) ), - crossScalaVersions in ThisBuild := Seq("2.11.12", "2.12.5"), + crossScalaVersions in ThisBuild := Seq("2.11.12", "2.12.6"), scalaVersion in ThisBuild := "2.11.12", scalacOptions ++= Seq(Opts.compile.deprecation, "-Xlint", "-feature"), scalacOptions ++= PartialFunction @@ -58,7 +58,7 @@ lazy val root = (project in file(".")) .settings(commonSettings) .settings( name := "scruid", - version := "1.0.5-SNAPSHOT", + version := "1.1.0-SNAPSHOT", libraryDependencies ++= Seq( "com.typesafe" % "config" % "1.3.3", "io.circe" %% "circe-core" % circeVersion, @@ -66,9 +66,9 @@ lazy val root = (project in file(".")) "io.circe" %% "circe-generic" % circeVersion, "io.circe" %% "circe-java8" % circeVersion, "com.typesafe.akka" %% "akka-http" % "10.1.1", - "de.heikoseeberger" %% "akka-http-circe" % "1.20.1", + "de.heikoseeberger" %% "akka-http-circe" % "1.21.0", "ca.mrvisser" %% "sealerate" % "0.0.5", - "ch.qos.logback" % "logback-classic" % "1.1.11", + "ch.qos.logback" % "logback-classic" % "1.2.3", "org.scalactic" %% "scalactic" % "3.0.5", "org.scalatest" %% "scalatest" % "3.0.5" % "test" ),