Skip to content

Commit 84e74db

Browse files
committed
Readme update for v0.7 release
1 parent 216b158 commit 84e74db

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
Simple HTTP and REST client for Go inspired by Ruby rest-client. [Features](#features) section describes in detail about resty capabilities.
44

5-
***v0.6 released and tagged on Feb 03, 2016.***
5+
***v0.7 released and tagged on May 01, 2016.***
6+
7+
*Since Go v1.6 HTTP/2 & HTTP/1.1 protocol is used transparently. `Resty` works fine with HTTP/2 and HTTP/1.1.*
68

79
#### Features
810
* GET, POST, PUT, DELETE, HEAD, PATCH and OPTIONS
911
* Simple and chainable methods for settings and request
10-
* Request Body can be `string`, `[]byte`, `struct`, `map` and `io.Reader` too
12+
* Request Body can be `string`, `[]byte`, `struct`, `map`, `slice` and `io.Reader` too
1113
* Auto detects `Content-Type`
1214
* [Response](https://godoc.org/github.com/go-resty/resty#Response) object gives you more possibility
1315
* Access as `[]byte` array - `response.Body()` OR Access as `string` - `response.String()`
@@ -48,12 +50,12 @@ resty tested with Go `v1.2` and above.
4850
Please refer section [Versioning](#versioning) for detailed info.
4951
```sh
5052
# install the library
51-
go get gopkg.in/resty.v0
53+
go get -u gopkg.in/resty.v0
5254
```
5355
#### Latest
5456
```sh
5557
# install the latest & greatest library
56-
go get github.com/go-resty/resty
58+
go get -u github.com/go-resty/resty
5759
```
5860

5961
## Usage

0 commit comments

Comments
 (0)