diff --git a/CHANGELOG.md b/CHANGELOG.md index 86bce6eb29..6143341e1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 38.2.0 - 2018-08-03 +* [#644](https://github.com/stripe/stripe-go/pull/644) Add support for file links +* [#645](https://github.com/stripe/stripe-go/pull/645) Add support for `Cancel` to topups + ## 38.1.0 - 2018-08-01 * [#643](https://github.com/stripe/stripe-go/pull/643) Bug fix and various code/logging improvements to retry code diff --git a/VERSION b/VERSION index 56a5f899ef..0dc0e7fb1a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -38.1.0 +38.2.0 diff --git a/stripe.go b/stripe.go index 3c527278d2..9f11ccde4c 100644 --- a/stripe.go +++ b/stripe.go @@ -710,7 +710,7 @@ const apiURL = "https://api.stripe.com" const apiversion = "2018-07-27" // clientversion is the binding version -const clientversion = "38.1.0" +const clientversion = "38.2.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