You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: readme.md
+10-4
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Requests-Scala 0.6.5
1
+
# Requests-Scala 0.7.0
2
2
3
3
[](https://gitter.im/lihaoyi/requests-scala?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4
4
@@ -46,9 +46,9 @@ For a hands-on introduction to this library, take a look at the following blog p
46
46
Use the following import to get you started:
47
47
48
48
```scala
49
-
ivy"com.lihaoyi::requests:0.6.5"// mill
50
-
"com.lihaoyi"%%"requests"%"0.6.5"// sbt
51
-
compile "com.lihaoyi:requests_2.12:0.6.5"//gradle
49
+
ivy"com.lihaoyi::requests:0.7.0"// mill
50
+
"com.lihaoyi"%%"requests"%"0.7.0"// sbt
51
+
compile "com.lihaoyi:requests_2.12:0.7.0"//gradle
52
52
```
53
53
54
54
## Making a Request
@@ -660,6 +660,12 @@ codebase or project!
660
660
661
661
## Changelog
662
662
663
+
### 0.7.0
664
+
665
+
- Allow `requests.send(method)(...)` to dynamically choose a HTTP method [#94](https://github.com/com-lihaoyi/requests-scala/pull/94)
666
+
- Avoid crashing on gzipped HEAD requests [#95](https://github.com/com-lihaoyi/requests-scala/pull/95)
667
+
- All exceptions now inherit from a `RequestsException` base class
0 commit comments