From 5d00b1a66777515527a2a5eb7828ede4cf7d4ed2 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Tue, 9 Oct 2018 13:54:01 -0700 Subject: [PATCH] Bump version to 51.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 dd5c9f9725..69e0c46787 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 51.3.0 - 2018-10-09 +* [#704](https://github.com/stripe/stripe-go/pull/704) Add support for `subscription_cancel_at_period_end` on the Upcoming Invoice API. + ## 51.2.0 - 2018-10-09 * [#702](https://github.com/stripe/stripe-go/pull/702) Add support for `delivery_success` filter when listing Events. diff --git a/VERSION b/VERSION index 5412f0015a..e2aa2cc210 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -51.2.0 +51.3.0 diff --git a/stripe.go b/stripe.go index c255b37731..17d67b0cad 100644 --- a/stripe.go +++ b/stripe.go @@ -785,7 +785,7 @@ const apiURL = "https://api.stripe.com" const apiversion = "2018-09-24" // clientversion is the binding version -const clientversion = "51.2.0" +const clientversion = "51.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