Skip to content

Commit

Permalink
Prep v1.102.0 release. (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsomething committed Aug 14, 2023
1 parent 8cfe345 commit f97a523
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions godo.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f97a523

Please sign in to comment.