Skip to content

Commit 07fb0e5

Browse files
committed
0.9.2
1 parent d4edb77 commit 07fb0e5

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

readme.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Requests-Scala 0.9.1
1+
# Requests-Scala 0.9.2
22

33
Requests-Scala is a Scala port of the popular Python
44
[Requests](http://docs.python-requests.org/) HTTP client. Requests-Scala aims to
@@ -43,6 +43,7 @@ For a hands-on introduction to this library, take a look at the following blog p
4343
- [Sessions](#sessions)
4444
- [Why Requests-Scala?](#why-requests-scala)
4545
- [Changelog](#changelog)
46+
- [0.9.2](#092)
4647
- [0.9.1](#091)
4748
- [0.9.0](#090)
4849
- [0.8.0](#080)
@@ -65,10 +66,10 @@ For a hands-on introduction to this library, take a look at the following blog p
6566
Use the following import to get you started:
6667

6768
```scala
68-
ivy"com.lihaoyi::requests:0.9.1" // mill
69-
"com.lihaoyi" %% "requests" % "0.9.1" // sbt
70-
compile "com.lihaoyi:requests_2.12:0.9.1" //gradle
71-
//> using dep "com.lihaoyi::requests:0.9.1" // scala-cli
69+
ivy"com.lihaoyi::requests:0.9.2" // mill
70+
"com.lihaoyi" %% "requests" % "0.9.2" // sbt
71+
compile "com.lihaoyi:requests_2.12:0.9.2" //gradle
72+
//> using dep "com.lihaoyi::requests:0.9.2" // scala-cli
7273
```
7374

7475
## Making a Request
@@ -722,6 +723,12 @@ codebase or project!
722723

723724
## Changelog
724725

726+
### 0.9.2
727+
728+
- Allow re-use of underlying `java.net.HttpClient` on a per-session basis [#216](https://github.com/com-lihaoyi/requests-scala/pull/216)
729+
- Remove incorrect ConnectException wrapping [#217](https://github.com/com-lihaoyi/requests-scala/pull/217)
730+
731+
725732
### 0.9.1
726733

727734
- Fix thread leak for `requests.get` due to usage of `java.net.HttpClient`

0 commit comments

Comments
 (0)