Skip to content

Commit 24dc7ba

Browse files
committed
readme update for v0.9 release
1 parent aac5fef commit 24dc7ba

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,19 @@
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.8 [released](https://github.com/go-resty/resty/releases/latest) and tagged on Jul 08, 2016.***
5+
***v0.9 [released](https://github.com/go-resty/resty/releases/latest) and tagged on Nov 01, 2016.***
66

77
*Since Go v1.6 HTTP/2 & HTTP/1.1 protocol is used transparently. `Resty` works fine with HTTP/2 and HTTP/1.1.*
88

9+
#### Roadmap
10+
***v0.10***
11+
12+
I will be focusing on golint, etc. code quality improvements (may have very minor breaking change due to golint)
13+
14+
***v1.0 (Around New Year)***
15+
16+
Go Resty first released on Sep 15, 2015 then go-resty grew gradually as a very handy and helpful library of HTTP & REST Client in the golang community. I'm planning to freeze API and make v1.0 release.
17+
918
#### Features
1019
* GET, POST, PUT, DELETE, HEAD, PATCH and OPTIONS
1120
* Simple and chainable methods for settings and request
@@ -17,6 +26,7 @@ Simple HTTP and REST client for Go inspired by Ruby rest-client. [Features](#fea
1726
* Automatic marshal and unmarshal for `JSON` and `XML` content type
1827
* Default is `JSON`, if you supply `struct/map` without header `Content-Type`
1928
* Easy to upload one or more file(s) via `multipart/form-data`
29+
* Backoff Retry Mechanism with retry condition function [reference](retry_test.go)
2030
* resty client [Request](https://godoc.org/github.com/go-resty/resty#Client.OnBeforeRequest) and [Response](https://godoc.org/github.com/go-resty/resty#Client.OnAfterResponse) middlewares
2131
* Authorization option of `BasicAuth` and `Bearer` token
2232
* Set request `ContentLength` value for all request or particular request
@@ -43,6 +53,7 @@ resty tested with Go `v1.2` and above.
4353
* FlexibleRedirectPolicy
4454
* DomainCheckRedirectPolicy
4555
* etc. [more info](redirect.go)
56+
* Backoff Retry Mechanism with retry condition function [reference](retry_test.go)
4657
* etc (upcoming - throw your idea's [here](https://github.com/go-resty/resty/issues)).
4758

4859
## Installation

0 commit comments

Comments
 (0)