aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-12-23 22:24:06 +0100
committeradamw <adam@warski.org>2017-12-23 22:24:06 +0100
commit9174caf20dc28c66553dd0cce4b3287b0b2874c5 (patch)
tree34992edb7c3f350431997cce1e8decd98558b5cd
parentd4e065dc3c8b80db24a96c83ddcca10b7aedc684 (diff)
downloadsttp-9174caf20dc28c66553dd0cce4b3287b0b2874c5.tar.gz
sttp-9174caf20dc28c66553dd0cce4b3287b0b2874c5.tar.bz2
sttp-9174caf20dc28c66553dd0cce4b3287b0b2874c5.zip
Updating dependencies
-rw-r--r--build.sbt14
-rw-r--r--project/plugins.sbt2
2 files changed, 8 insertions, 8 deletions
diff --git a/build.sbt b/build.sbt
index a1ea5b5..5384d13 100644
--- a/build.sbt
+++ b/build.sbt
@@ -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"
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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"
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 477c20e..11b41ba 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -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")