diff --git a/README.md b/README.md index ed5b2b03..fc58ce48 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@

Resty

-

Simple REST and HTTP client library for Go (inspired by Ruby rest-client)

+

Simple HTTP and REST client library for Go (inspired by Ruby rest-client)

Features section describes in detail about Resty capabilities

-

Build Status Code Coverage Go Report Card Release Version GoDoc License

+

Build Status Code Coverage Go Report Card Release Version GoDoc License

## News * [Collecting Inputs for Resty v2.0](https://github.com/go-resty/resty/issues/166) - * v1.6 [released](https://github.com/go-resty/resty/releases/latest) and tagged on May 28, 2018. + * v1.7.0 [released](https://github.com/go-resty/resty/releases/latest) and tagged on Jul 04, 2018. * v1.0 released - Resty's first version was released on Sep 15, 2015 then it grew gradually as a very handy and helpful library. Its been a two years; `v1.0` was released on Sep 25, 2017. I'm very thankful to Resty users and its [contributors](https://github.com/go-resty/resty/graphs/contributors). ## Features @@ -57,7 +57,7 @@ * goroutine concurrent safe * REST and HTTP modes * Debug mode - clean and informative logging presentation - * Gzip - Go does it automatically also resty fallback handling too + * Gzip - Go does it automatically also resty has fallback handling too * Works fine with `HTTP/2` and `HTTP/1.1` * [Bazel support](#bazel-support) * Easily mock resty for testing, [for e.g.](#mocking-http-requests-using-httpmock-library) @@ -87,7 +87,7 @@ Please refer section [Versioning](#versioning) for detailed info. ##### go.mod ```bash -require github.com/go-resty/resty v1.6 +require github.com/go-resty/resty v1.7.0 ``` ##### go get diff --git a/resty.go b/resty.go index 66c07c5f..98bfd208 100644 --- a/resty.go +++ b/resty.go @@ -6,4 +6,4 @@ package resty // Version # of resty -const Version = "1.7-edge" +const Version = "1.7"