diff --git a/CHANGELOG.md b/CHANGELOG.md index e4ad195124..0a6f026659 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 68.8.0 - 2020-01-08 +* [#1011](https://github.com/stripe/stripe-go/pull/1011) Add support for `InvoiceItem` and fix `Livemode` on `InvoiceLine` + ## 68.7.0 - 2020-01-07 * [#1008](https://github.com/stripe/stripe-go/pull/1008) Add `ReportingCategory` to `BalanceTransaction` diff --git a/README.md b/README.md index 7e8fa65c66..543e6b0870 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.7.0 + github.com/stripe/stripe-go v68.8.0 ) ``` diff --git a/VERSION b/VERSION index b5d9b85440..b6f88e1fb8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -68.7.0 +68.8.0 diff --git a/stripe.go b/stripe.go index 268ec49f7f..7fe4d2bd78 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.7.0" +const clientversion = "68.8.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