From 3face0dac0f7fb765bf637f51f1f5343b3c7a235 Mon Sep 17 00:00:00 2001 From: Jeevanandam M Date: Sat, 30 Sep 2023 19:24:34 -0700 Subject: [PATCH] chore: readme, docs, and version update (#716) --- README.md | 4 ++-- client.go | 2 ++ resty.go | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eec86c41..294a288f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@

Features section describes in detail about Resty capabilities

-

Build Status Code Coverage Go Report Card Release Version GoDoc License Mentioned in Awesome Go

+

Build Status Code Coverage Go Report Card Release Version GoDoc License Mentioned in Awesome Go

Resty Communication Channels

@@ -13,7 +13,7 @@ ## News - * v2.8.0 [released](https://github.com/go-resty/resty/releases/tag/v2.8.0) and tagged on Sep 17, 2023. + * v2.9.1 [released](https://github.com/go-resty/resty/releases/tag/v2.9.1) and tagged on Sep 30, 2023. * v2.0.0 [released](https://github.com/go-resty/resty/releases/tag/v2.0.0) and tagged on Jul 16, 2019. * v1.12.0 [released](https://github.com/go-resty/resty/releases/tag/v1.12.0) and tagged on Feb 27, 2019. * v1.0 released and tagged on Sep 25, 2017. - 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 since first release. I'm very thankful to Resty users and its [contributors](https://github.com/go-resty/resty/graphs/contributors). diff --git a/client.go b/client.go index 9165bf25..446ba851 100644 --- a/client.go +++ b/client.go @@ -923,6 +923,8 @@ func (c *Client) SetOutputDirectory(dirPath string) *Client { // SetRateLimiter sets an optional `RateLimiter`. If set the rate limiter will control // all requests made with this client. +// +// Since v2.9.0 func (c *Client) SetRateLimiter(rl RateLimiter) *Client { c.rateLimiter = rl return c diff --git a/resty.go b/resty.go index 03917a8f..0e880681 100644 --- a/resty.go +++ b/resty.go @@ -14,7 +14,7 @@ import ( ) // Version # of resty -const Version = "2.9.0-dev" +const Version = "2.9.1" // New method creates a new Resty client. func New() *Client {