Skip to content

Commit

Permalink
bump version to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
longcao committed Mar 1, 2015
1 parent 04d27bb commit 03b2529
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 @@ -23,7 +23,7 @@ Requests for Scala is cross published to 2.10.4 and 2.11.5. Add the Bintray reso
```
resolvers += "requests" at "http://dl.bintray.com/longcao/maven"
libraryDependencies += "org.requests" %% "requests" % "0.1.1"
libraryDependencies += "org.requests" %% "requests" % "0.1.2"
```

## Quickstart
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ organization := "org.requests"

name := "requests"

version := "0.1.1"
version := "0.1.2"

scalaVersion := "2.11.5"

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/org/requests/Requests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ object Requests {
sslContext: SSLContext = null
): Requests = {
val config = new AsyncHttpClientConfig.Builder()
.setUserAgent("Requests.scala/0.1.1")
.setUserAgent("Requests.scala/0.1.2")
.setAcceptAnyCertificate(!verify)
.setSSLContext(sslContext)

Expand Down

0 comments on commit 03b2529

Please sign in to comment.