Skip to content

Commit

Permalink
bump of libraries (#71)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
eryshev authored Dec 14, 2018
1 parent c36999b commit 5569158
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val VERSION = "0.11.0"
val VERSION = "0.12.0"

lazy val commonSettings = Seq(
organization := "com.criteo.lolhttp",
Expand Down Expand Up @@ -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"
Expand All @@ -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")
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 5569158

Please sign in to comment.