Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep v1.102.0 release. #627

Merged
merged 1 commit into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading