From 0ab14d725ff5e13eb260b36b2a0fd316933756fd Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Tue, 8 Sep 2020 13:19:25 -0700 Subject: [PATCH] Bump version to 72.2.0 --- CHANGELOG.md | 3 +++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb1bfe8556..8aee1900ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 72.2.0 - 2020-09-08 +* [#1180](https://github.com/stripe/stripe-go/pull/1180) Add support for Sofort on `PaymentMethod` and `PaymentIntent` + ## 72.1.0 - 2020-09-02 * [#1178](https://github.com/stripe/stripe-go/pull/1178) Fix the constant names for `BankAccountAvailablePayoutMethod` * [#1177](https://github.com/stripe/stripe-go/pull/1177) Add support for `AvailablePayoutMethods` on `BankAccount` diff --git a/VERSION b/VERSION index 16c4010a8b..420c080fbd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.1.0 +72.2.0 diff --git a/stripe.go b/stripe.go index 8d1014de72..5cc0396239 100644 --- a/stripe.go +++ b/stripe.go @@ -994,7 +994,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "72.1.0" +const clientversion = "72.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