Skip to content

Commit 594aa14

Browse files
committed
0.6.4
1 parent 72b9864 commit 594aa14

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

build.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import scalalib._
44

55
object requests extends Cross[RequestsModule]("2.12.6", "2.13.0")
66
class RequestsModule(val crossScalaVersion: String) extends CrossScalaModule with PublishModule {
7-
def publishVersion = "0.6.3"
7+
def publishVersion = "0.6.4"
88
def artifactName = "requests"
99
def pomSettings = PomSettings(
1010
description = "Scala port of the popular Python Requests HTTP client",

readme.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Requests-Scala 0.6.3
1+
# Requests-Scala 0.6.4
22

33
[![Join the chat at https://gitter.im/lihaoyi/requests-scala](https://badges.gitter.im/lihaoyi/requests-scala.svg)](https://gitter.im/lihaoyi/requests-scala?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44

@@ -46,9 +46,9 @@ For a hands-on introduction to this library, take a look at the following blog p
4646
Use the following import to get you started:
4747

4848
```scala
49-
ivy"com.lihaoyi::requests:0.6.3" // mill
50-
"com.lihaoyi" %% "requests" % "0.6.3" // sbt
51-
compile "com.lihaoyi:requests_2.12:0.6.3" //gradle
49+
ivy"com.lihaoyi::requests:0.6.4" // mill
50+
"com.lihaoyi" %% "requests" % "0.6.4" // sbt
51+
compile "com.lihaoyi:requests_2.12:0.6.4" //gradle
5252
```
5353

5454
## Making a Request
@@ -656,13 +656,15 @@ codebase or project!
656656

657657
## Changelog
658658

659-
### 0.6.3
659+
### 0.6.4
660660

661661
- `requests.Response` now implements the `geny.Readable` interface, and can be
662662
directly passed to compatible APIs like `ujson.read` or `os.write`
663663

664664
- Add support for custom SSL certs
665665

666+
- Allow body content for DELETE requests
667+
666668
### 0.5.1
667669

668670
- Made `requests.{get,post,put,delete,head,options,patch}.stream` return a

0 commit comments

Comments
 (0)