README.md in httpx-1.1.2 vs README.md in httpx-1.1.3
- old
+ new
@@ -44,11 +44,11 @@
```ruby
HTTPX.post("http://example.com", form: { user: "john", password: "pass" })
http = HTTPX.with(headers: { "x-my-name" => "joe" })
-http.patch(("http://example.com/file", body: File.open("path/to/file")) # request body is streamed
+http.patch("http://example.com/file", body: File.open("path/to/file")) # request body is streamed
```
If you want to do some more things with the response, you can get an `HTTPX::Response`:
```ruby
@@ -149,10 +149,10 @@
## Caveats
## Versioning Policy
-Although 0.x software, `httpx` is considered API-stable and production-ready, i.e. current API or options may be subject to deprecation and emit log warnings, but can only effectively be removed in a major version change.
+`httpx` follows Semantic Versioning.
## Contributing
* Discuss your contribution in an issue
* Fork it