Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Feb 14, 2019
1 parent b92ac1a commit 5b0c5c9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ lazy val commonSettings = commonSmlBuildSettings ++ ossPublishSettings ++ Seq(

val scalaTest = "org.scalatest" %% "scalatest" % "3.0.5"

val http4sVersion = "0.20.0-M4"
val circeVersion = "0.11.0"
val sttpVersion = "1.5.8"
val http4sVersion = "0.20.0-M5"
val circeVersion = "0.11.1"
val sttpVersion = "1.5.9"

lazy val loggerDependencies = Seq(
"ch.qos.logback" % "logback-classic" % "1.2.3",
Expand Down Expand Up @@ -86,7 +86,7 @@ lazy val openapiCirce: Project = (project in file("openapi/openapi-circe"))
libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"io.circe" %% "circe-magnolia-derivation" % "0.3.0"
"io.circe" %% "circe-magnolia-derivation" % "0.4.0"
),
name := "tapir-openapi-circe"
)
Expand Down Expand Up @@ -128,7 +128,7 @@ lazy val akkaHttpServer: Project = (project in file("server/akka-http-server"))
name := "tapir-akka-http-server",
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http" % "10.1.7",
"com.typesafe.akka" %% "akka-stream" % "2.5.19"
"com.typesafe.akka" %% "akka-stream" % "2.5.21"
)
)
.dependsOn(core, serverTests % "test")
Expand Down Expand Up @@ -175,7 +175,7 @@ lazy val playground: Project = (project in file("playground"))
name := "tapir-tests",
libraryDependencies ++= Seq(
"com.softwaremill.sttp" %% "akka-http-backend" % sttpVersion,
"org.webjars" % "swagger-ui" % "3.20.3"
"org.webjars" % "swagger-ui" % "3.20.5"
),
libraryDependencies ++= loggerDependencies,
publishArtifact := false
Expand Down
2 changes: 1 addition & 1 deletion doc/openapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ println(docs.toYaml)
Exposing the OpenAPI documentation can be very application-specific. For example, to expose the docs using the
Swagger UI and akka-http:

1. add `libraryDependencies += "org.webjars" % "swagger-ui" % "3.20.3"` to `build.sbt` (or newer)
1. add `libraryDependencies += "org.webjars" % "swagger-ui" % "3.20.5"` to `build.sbt` (or newer)
2. generate the yaml content to serve as a `String` using tapir:

```scala
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("com.softwaremill.sbt-softwaremill" % "sbt-softwaremill" % "1.4.0")
addSbtPlugin("com.softwaremill.sbt-softwaremill" % "sbt-softwaremill" % "1.4.2")
addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1")

0 comments on commit 5b0c5c9

Please sign in to comment.