Skip to content

Commit

Permalink
Promoted to 14.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
losizm committed Jul 19, 2020
1 parent e647296 commit c570043
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -48,7 +48,7 @@ writing HTTP messages, and it includes [client](#HTTP-Client) and
To use **Scamper**, start by adding it as a dependency to your project:

```scala
libraryDependencies += "com.github.losizm" %% "scamper" % "14.0.1"
libraryDependencies += "com.github.losizm" %% "scamper" % "14.1.0"
```

## HTTP Messages
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
@@ -1,6 +1,6 @@
organization := "com.github.losizm"
name := "scamper"
version := "14.0.1"
version := "14.1.0"

description := "The HTTP library for Scala"
homepage := Some(url("https://github.com/losizm/scamper"))
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/scamper/client/HttpClientImpl.scala
Expand Up @@ -74,7 +74,7 @@ private class HttpClientImpl(id: Long, settings: HttpClientImpl.Settings) extend

val secure = target.getScheme.matches("https|wss")
val host = getEffectiveHost(target)
val userAgent = request.getHeaderValueOrElse("User-Agent", "Scamper/14.0.1")
val userAgent = request.getHeaderValueOrElse("User-Agent", "Scamper/14.1.0")
val cookies = request.cookies ++ cookieStore.get(target)
val connection = target.getScheme.matches("wss?") match {
case true => checkWebSocketRequest(request).connection.mkString(", ")
Expand Down

0 comments on commit c570043

Please sign in to comment.