Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update http4s-blaze-client, ... to 0.20.3 #67

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt._
object Dependencies {

private[Dependencies] object versionOf {
val http4s = "0.18.24"
val http4s = "0.20.3"
val monix = "3.0.0-RC1"
val scalaz = "7.3.0-M27"
val cats = "1.6.1"
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/http4s/extend/syntax/Http4sServiceSyntax.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package http4s.extend.syntax
import cats.data.{Kleisli, OptionT}
import cats.syntax.flatMap._
import cats.{FlatMap, Functor}
import org.http4s.{HttpService, Request, Response}
import org.http4s.{HttpRoutes, Request, Response}

private[syntax] trait Http4sServiceSyntax {
implicit def httpServiceSyntax[F[_]](s: HttpService[F]): HttpServiceOps[F] = new HttpServiceOps(s)
implicit def httpServiceSyntax[F[_]](s: HttpRoutes[F]): HttpServiceOps[F] = new HttpServiceOps(s)
}

/**
Expand Down