From f32aa71c1ec7f9cfa6fd7439fdbc4d06d351a9d5 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Thu, 20 Feb 2020 17:13:01 -0800 Subject: [PATCH] Bump version to 69.0.0 --- CHANGELOG.md | 3 +++ README.md | 2 +- VERSION | 2 +- stripe.go | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c9a01f0e1..cc42352524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 69.0.0 - 2020-02-20 +* [#1033](https://github.com/stripe/stripe-go/pull/1033) Make `Subscription` expandable on `Invoice` + ## 68.20.0 - 2020-02-12 * [#1029](https://github.com/stripe/stripe-go/pull/1029) Add support for `Amount` in `CheckoutSessionPaymentIntentDataTransferDataParams` diff --git a/README.md b/README.md index 6ce61b3ff3..36282eddab 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 v68.20.0 + github.com/stripe/stripe-go v69.0.0 ) ``` diff --git a/VERSION b/VERSION index 5d20833d02..b826e1a832 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -68.20.0 +69.0.0 diff --git a/stripe.go b/stripe.go index cb7c9d5d29..0dff07bc9e 100644 --- a/stripe.go +++ b/stripe.go @@ -940,7 +940,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "68.20.0" +const clientversion = "69.0.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