From 91c83c783c35f7d5122c331aae94d2a4598b393f Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Mon, 21 Sep 2020 15:39:03 -0700 Subject: [PATCH] Bump version to 72.4.0 --- CHANGELOG.md | 4 ++++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f3062cea6..9ccce56f17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 72.4.0 - 2020-09-21 +* [#1185](https://github.com/stripe/stripe-go/pull/1185) Add support for `AmountCaptured` on `Charge` +* [#1186](https://github.com/stripe/stripe-go/pull/1186) Add support for `CheckoutSession` on `Discount` + ## 72.3.0 - 2020-09-14 * [#1182](https://github.com/stripe/stripe-go/pull/1182) Add `Metadata` on `WebhookEndpoint` diff --git a/VERSION b/VERSION index 4a5636d67e..f12f1166a8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.3.0 +72.4.0 diff --git a/stripe.go b/stripe.go index ec566affde..b195e933e7 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.3.0" +const clientversion = "72.4.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