diff --git a/CHANGELOG.md b/CHANGELOG.md index f4fa45a155..6566453bad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 68.11.0 - 2020-01-17 +* [#1014](https://github.com/stripe/stripe-go/pull/1014) Add `Metadata` support on Checkout `Session` + ## 68.10.0 - 2020-01-15 * [#1012](https://github.com/stripe/stripe-go/pull/1012) Adds `PendingUpdate` to `Subscription` diff --git a/README.md b/README.md index fcfbd45088..2195044db2 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.10.0 + github.com/stripe/stripe-go v68.11.0 ) ``` diff --git a/VERSION b/VERSION index 339692b58d..5e12abe799 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -68.10.0 +68.11.0 diff --git a/stripe.go b/stripe.go index 9e3c561179..f9d9c0e3dc 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 = "68.10.0" +const clientversion = "68.11.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