Skip to content

Commit

Permalink
Add type annotation to play docs, update circe.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdziuban committed Sep 15, 2023
1 parent 75cf4ec commit 9e3903d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/implementations/play.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ implicit val actorSystem: ActorSystem = ActorSystem.create()

def fakeRequest(u: ReverseUri): RequestHeader =
new RequestHeader {
def attrs = TypedMap.empty
def attrs: TypedMap = TypedMap.empty
def connection: RemoteConnection = RemoteConnection("", false, None)
def headers: Headers = Headers()
def method: String = u.method.name
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ object Build {

def isHttp4sV1Milestone(version: String): Boolean = version.startsWith(http4sV1Milestone)

def circeDep(proj: String) = Def.setting("io.circe" %%% s"circe-$proj" % "0.14.3")
def circeDep(proj: String) = Def.setting("io.circe" %%% s"circe-$proj" % "0.14.5")
def http4sDep(proj: String, version: String) = Def.setting("org.http4s" %%% s"http4s-$proj" % version)
def playCore(version: String) = Def.setting("com.typesafe.play" %%% "play" % version)
}

0 comments on commit 9e3903d

Please sign in to comment.