diff --git a/CHANGELOG.md b/CHANGELOG.md index d3443a8087..a66fa44558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 59.1.0 - 2019-03-22 +* [#819](https://github.com/stripe/stripe-go/pull/819) Add default level prefixes in messages from `LeveledLogger` + ## 59.0.0 - 2019-03-22 * [#818](https://github.com/stripe/stripe-go/pull/818) Implement leveled logging (very minor breaking change -- only a couple properties were removed from the internal `BackendImplementation`) diff --git a/README.md b/README.md index ec3fa3f8db..3d0509b3f0 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ suffix* in the path like so: module github.com/my/package require ( - github.com/stripe/stripe-go v59.0.0 + github.com/stripe/stripe-go v59.1.0 ) ``` diff --git a/VERSION b/VERSION index 1a985d6cc8..ae25a0b6dd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -59.0.0 +59.1.0 diff --git a/stripe.go b/stripe.go index 5c954eed60..c374e41772 100644 --- a/stripe.go +++ b/stripe.go @@ -796,7 +796,7 @@ func StringValue(v *string) string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "59.0.0" +const clientversion = "59.1.0" // defaultHTTPTimeout is the default timeout on the http.Client used by the library. // This is chosen to be consistent with the other Stripe language libraries and