From 4bdbf0a79a28704194634201f62de897a5ecee80 Mon Sep 17 00:00:00 2001 From: Brandur Date: Wed, 5 Sep 2018 15:50:14 -0700 Subject: [PATCH] Bump version to 48.2.0 --- CHANGELOG.md | 3 +++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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