Skip to content

Commit

Permalink
Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Dec 23, 2017
1 parent d4e065d commit 9174caf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ val commonSettings = Seq(
.withWarnTransitiveEvictions(false)
)

val akkaHttpVersion = "10.0.10"
val akkaHttpVersion = "10.0.11"
val akkaHttp = "com.typesafe.akka" %% "akka-http" % akkaHttpVersion

val monixVersion = "2.3.2"
Expand Down Expand Up @@ -87,7 +87,7 @@ lazy val asyncHttpClientBackend: Project = (project in file(
.settings(
name := "async-http-client-backend",
libraryDependencies ++= Seq(
"org.asynchttpclient" % "async-http-client" % "2.0.37"
"org.asynchttpclient" % "async-http-client" % "2.0.38"
)
) dependsOn core

Expand All @@ -104,7 +104,7 @@ lazy val asyncHttpClientScalazBackend: Project = (project in file(
.settings(
name := "async-http-client-backend-scalaz",
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-concurrent" % "7.2.16"
"org.scalaz" %% "scalaz-concurrent" % "7.2.18"
)
) dependsOn asyncHttpClientBackend

Expand All @@ -122,7 +122,7 @@ lazy val asyncHttpClientCatsBackend: Project = (project in file(
.settings(
name := "async-http-client-backend-cats",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "0.5"
"org.typelevel" %% "cats-effect" % "0.6"
)
) dependsOn asyncHttpClientBackend

Expand All @@ -132,7 +132,7 @@ lazy val asyncHttpClientFs2Backend: Project = (project in file(
.settings(
name := "async-http-client-backend-fs2",
libraryDependencies ++= Seq(
"com.github.zainab-ali" %% "fs2-reactive-streams" % "0.2.5"
"com.github.zainab-ali" %% "fs2-reactive-streams" % "0.2.7"
)
) dependsOn asyncHttpClientBackend

Expand All @@ -141,7 +141,7 @@ lazy val okhttpBackend: Project = (project in file("okhttp-backend"))
.settings(
name := "okhttp-backend",
libraryDependencies ++= Seq(
"com.squareup.okhttp3" % "okhttp" % "3.9.0"
"com.squareup.okhttp3" % "okhttp" % "3.9.1"
)
) dependsOn core

Expand Down Expand Up @@ -182,7 +182,7 @@ lazy val tests: Project = (project in file("tests"))
akkaHttp,
scalaTest,
"com.typesafe.scala-logging" %% "scala-logging" % "3.7.2",
"com.github.pathikrit" %% "better-files" % "2.17.1",
"com.github.pathikrit" %% "better-files" % "3.4.0",
"ch.qos.logback" % "logback-classic" % "1.2.3"
).map(_ % "test"),
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value % "test"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "1.14")
addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "1.15")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")

Expand Down

0 comments on commit 9174caf

Please sign in to comment.