Skip to content

Commit

Permalink
Promoted to 40.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
losizm committed Jan 8, 2024
1 parent fc381c1 commit 9c84875
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It includes client and server implementations along with WebSockets.
To get started, add **Scamper** to your sbt project†:

```scala
libraryDependencies += "com.github.losizm" %% "scamper" % "40.0.7"
libraryDependencies += "com.github.losizm" %% "scamper" % "40.0.8"
```

**Scamper** uses SLF4J logging abstraction under the hood, so you'll need to
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization := "com.github.losizm"
name := "scamper"
version := "40.0.7"
version := "40.0.8"
description := "The HTTP library for Scala"
homepage := Some(url("https://github.com/losizm/scamper"))
licenses := List("Apache License, Version 2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/scamper/http/client/HttpClientImpl.scala
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ private class HttpClientImpl(id: Long, settings: HttpClientImpl.Settings) extend

val secure = target.scheme.matches("https|wss")
val authority = target.authority
val userAgent = request.getHeaderValueOrElse("User-Agent", "Scamper/40.0.7")
val userAgent = request.getHeaderValueOrElse("User-Agent", "Scamper/40.0.8")
val requestCookies = request.cookies ++ cookies.get(target)
val connection = getEffectiveConnection(request)

Expand Down

0 comments on commit 9c84875

Please sign in to comment.