From 5569158ec0d9c1fbb4661b662a1dfb0440a18916 Mon Sep 17 00:00:00 2001 From: eryshev Date: Fri, 14 Dec 2018 17:36:04 +0100 Subject: [PATCH] bump of libraries (#71) * bump of libraries fs2: 1.0.2 cats-core: 1.5.0 cats-effect: 1.1.0 circe: 0.10.1 * bump version to 0.12 --- build.sbt | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index 95a5498..b2dc015 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val VERSION = "0.11.0" +val VERSION = "0.12.0" lazy val commonSettings = Seq( organization := "com.criteo.lolhttp", @@ -102,15 +102,17 @@ def removeDependencies(groups: String*)(xml: scala.xml.Node) = { ))(xml) } +val circeVersion = "0.10.1" + lazy val lolhttp = (project in file("core")). settings( commonSettings, libraryDependencies ++= Seq( - "co.fs2" %% "fs2-core" % "1.0.0", - "org.typelevel" %% "cats-core" % "1.1.0", - "org.typelevel" %% "cats-effect" % "1.0.0", + "co.fs2" %% "fs2-core" % "1.0.2", + "org.typelevel" %% "cats-core" % "1.5.0", + "org.typelevel" %% "cats-effect" % "1.1.0", "org.http4s" %% "blaze-http" % "0.14.0-M8", "org.scalatest" %% "scalatest" % "3.0.4" % "test", "ch.qos.logback" % "logback-classic" % "1.2.3" % "test" @@ -135,9 +137,8 @@ lazy val loljson = libraryDependencies ++= Seq( "io.circe" %% "circe-core", "io.circe" %% "circe-generic", - "io.circe" %% "circe-parser", - "io.circe" %% "circe-optics" - ).map(_ % "0.10.0"), + "io.circe" %% "circe-parser" + ).map(_ % circeVersion), pomPostProcess := removeDependencies("org.scalatest") ). dependsOn(lolhttp % "compile->compile;test->test") @@ -170,6 +171,8 @@ lazy val examples: Project = libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3", + libraryDependencies += "io.circe" %% "circe-optics" % "0.10.0", + fork in IntegrationTest := true, // Running HTTP2 examples with Java 8 requires to install the right version of alpn-boot.