From f97a523df3d6ddeaa498eaf5b484242efe2a5beb Mon Sep 17 00:00:00 2001 From: Andrew Starr-Bochicchio Date: Mon, 14 Aug 2023 16:22:08 -0400 Subject: [PATCH] Prep v1.102.0 release. (#627) --- CHANGELOG.md | 6 ++++++ godo.go | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 184ee690..19e9f614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [v1.102.0] - 2023-08-14 + +- #624 - @danaelhe - Update README.md with Retryable Info +- #626 - @andrewsomething - Allow configuring go-retryablehttp.Logger +- #625 - @andrewsomething - Export the HTTP client + ## [v1.101.0] - 2023-08-09 - #619 - @danaelhe - Add retryablehttp Client Option diff --git a/godo.go b/godo.go index cc8e89c2..f9ab41d0 100644 --- a/godo.go +++ b/godo.go @@ -22,7 +22,7 @@ import ( ) const ( - libraryVersion = "1.101.0" + libraryVersion = "1.102.0" defaultBaseURL = "https://api.digitalocean.com/" userAgent = "godo/" + libraryVersion mediaType = "application/json" @@ -111,7 +111,7 @@ type Client struct { // to explicitly set the RetryWaitMin and RetryWaitMax values. // // Note: Opting to use the go-retryablehttp client will overwrite any custom HTTP client passed into New(). -// Only the custom HTTP client's custom transport and timeout will be maintained. +// Only the oauth2.TokenSource and Timeout will be maintained. type RetryConfig struct { RetryMax int RetryWaitMin *float64 // Minimum time to wait