diff --git a/CHANGELOG.md b/CHANGELOG.md index ebb7383382..e425def9a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 67.7.0 - 2019-11-25 +* [#996](https://github.com/stripe/stripe-go/pull/996) Add support for `OutOfBandAmount` on `CreditNote` creation +* [#995](https://github.com/stripe/stripe-go/pull/995) Fix comment typos + ## 67.6.0 - 2019-11-22 * [#994](https://github.com/stripe/stripe-go/pull/994) Support for the `now` on `StartDate` on Subscription Schedule creation diff --git a/README.md b/README.md index 57b5f615b7..c25909b547 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 v67.6.0 + github.com/stripe/stripe-go v67.7.0 ) ``` diff --git a/VERSION b/VERSION index 8828bbc2e1..a84b4f698f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -67.6.0 +67.7.0 diff --git a/stripe.go b/stripe.go index 4995bf1a26..c0fa56d522 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 = "67.6.0" +const clientversion = "67.7.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