diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aa886edc6..8e9a21f463 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 48.2.0 - 2018-09-05 +* [#690](https://github.com/stripe/stripe-go/pull/690) Add support for reporting resources + ## 48.1.0 - 2018-09-05 * [#683](https://github.com/stripe/stripe-go/pull/683) Add `StatusTransitions` filter parameters to `OrderListParams` diff --git a/VERSION b/VERSION index 34dff095ef..7ff0d17a9a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -48.1.0 +48.2.0 diff --git a/stripe.go b/stripe.go index e43d83ae7d..86dedc4673 100644 --- a/stripe.go +++ b/stripe.go @@ -785,7 +785,7 @@ const apiURL = "https://api.stripe.com" const apiversion = "2018-08-23" // clientversion is the binding version -const clientversion = "48.1.0" +const clientversion = "48.2.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