diff --git a/CHANGELOG.md b/CHANGELOG.md index 5952566ba2..eee12c512a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 65.2.0 - 2019-10-17 +* [#972](https://github.com/stripe/stripe-go/pull/972) Various API changes + * `Requirements` on Issuing `Cardholder` + * `PaymentMethodDetails.AuBecsDebit.Mandate` on `Charge` + * `PaymentBehavior` on `Subscription` creation can now take the value `pending_if_incomplete` + * `PaymentBehavior` on `SubscriptionItem` creation is now supported + * `SubscriptionData.TrialFromPlan` is now supported on Checkout `Session` creation + * New values for `TaxIDType` + ## 65.1.1 - 2019-10-11 * [#970](https://github.com/stripe/stripe-go/pull/970) Properly deserialize `Fulfilled` on `StatusTransitions` in the `order` package diff --git a/README.md b/README.md index 775e1a028d..9fbcbf57f2 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 v65.1.1 + github.com/stripe/stripe-go v65.2.0 ) ``` diff --git a/VERSION b/VERSION index 1dba4dcec7..4d350a654b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -65.1.1 +65.2.0 diff --git a/stripe.go b/stripe.go index 06b7a3d9af..d45df90023 100644 --- a/stripe.go +++ b/stripe.go @@ -950,7 +950,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "65.1.1" +const clientversion = "65.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