diff --git a/CHANGELOG.md b/CHANGELOG.md index 56265dc173..163b160d94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 62.2.0 - 2019-08-21 +* [#922](https://github.com/stripe/stripe-go/pull/922) A few Billing changes +* [#923](https://github.com/stripe/stripe-go/pull/923) Add support for `Mode` on Checkout `Session` + * Add `Schedule` to `Subscription` + * Add missing parameters for the Upcoming Invoice API: `Schedule`, `SubscriptionCancelAt`, `SubscriptionCancelNow` + * Add missing properties and parameters for a `SubscriptionSchedule` phase: `BillingThresholds`, `CollectionMethod`, `DefaultPaymentMethod`, `InvoiceSettings` + ## 62.1.2 - 2019-08-19 * [#921](https://github.com/stripe/stripe-go/pull/921) Mark `Customer` as an invalid parameter on PaymentMethod creation diff --git a/README.md b/README.md index d94572ecda..05a4ea6bda 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 v62.1.2 + github.com/stripe/stripe-go v62.2.0 ) ``` diff --git a/VERSION b/VERSION index fe52c1d796..1a5e111a58 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -62.1.2 +62.2.0 diff --git a/stripe.go b/stripe.go index 57372a637d..02ef3f92bf 100644 --- a/stripe.go +++ b/stripe.go @@ -915,7 +915,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "62.1.2" +const clientversion = "62.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