diff --git a/CHANGELOG.md b/CHANGELOG.md index d4edaccaa6..334a7ec951 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 71.16.0 - 2020-05-29 +* [#1108](https://github.com/stripe/stripe-go/pull/1108) Add `Metadata` and `Object` on `Topup` + ## 71.15.0 - 2020-05-28 * [#1106](https://github.com/stripe/stripe-go/pull/1106) Add support for `ProductData` on `LineItems` for Checkout `Session` * [#1105](https://github.com/stripe/stripe-go/pull/1105) Add `AuthenticationFlow` to `ChargePaymentMethodDetailsCardThreeDSecure` diff --git a/VERSION b/VERSION index 7158b43ae7..a7f5e85c99 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -71.15.0 +71.16.0 diff --git a/stripe.go b/stripe.go index 69d8919f16..024f217719 100644 --- a/stripe.go +++ b/stripe.go @@ -992,7 +992,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "71.15.0" +const clientversion = "71.16.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