From 7d056f3499640b9725d87ae70099eebb923c8379 Mon Sep 17 00:00:00 2001 From: Brandur Date: Thu, 6 Sep 2018 10:52:28 -0700 Subject: [PATCH] Bump version to 48.3.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 8e9a21f463..2b1536c49f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 48.3.0 - 2018-09-06 +* [#691](https://github.com/stripe/stripe-go/pull/691) Add `InvoicePrefix` to `Customer` and `CustomerParams` + ## 48.2.0 - 2018-09-05 * [#690](https://github.com/stripe/stripe-go/pull/690) Add support for reporting resources diff --git a/VERSION b/VERSION index 7ff0d17a9a..1e8c307ce5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -48.2.0 +48.3.0 diff --git a/stripe.go b/stripe.go index 86dedc4673..78b8637685 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.2.0" +const clientversion = "48.3.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