diff --git a/CHANGELOG.md b/CHANGELOG.md index b9ad2ba747..a4a2079e02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 55.13.0 - 2019-01-17 +* [#779](https://github.com/stripe/stripe-go/pull/779) Add support for `receipt_url` on `Charge` + ## 55.12.0 - 2019-01-17 * [#766](https://github.com/stripe/stripe-go/pull/766) Add optional support for sending request telemetry to Stripe diff --git a/README.md b/README.md index 49b1cae857..562155472b 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 v55.12.0 + github.com/stripe/stripe-go v55.13.0 ) ``` diff --git a/VERSION b/VERSION index 26b1efe1d6..c29da4339d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -55.12.0 +55.13.0 diff --git a/stripe.go b/stripe.go index 8e006b5814..1a1b4f97bc 100644 --- a/stripe.go +++ b/stripe.go @@ -820,7 +820,7 @@ const apiURL = "https://api.stripe.com" const apiversion = "2018-11-08" // clientversion is the binding version -const clientversion = "55.12.0" +const clientversion = "55.13.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