From 1e0db5d0e3f9f07a375af35d93f8569e75fc5147 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Wed, 6 Mar 2019 18:19:04 -0800 Subject: [PATCH] Bump version to 57.6.0 --- CHANGELOG.md | 3 +++ README.md | 2 +- VERSION | 2 +- stripe.go | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aeaccd2f29..e2c370281c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 57.6.0 - 2019-03-06 +* [#808](https://github.com/stripe/stripe-go/pull/808) Add support for `backdate_start_date` and `cancel_at` on `Subscription`. + ## 57.5.0 - 2019-03-05 * [#807](https://github.com/stripe/stripe-go/pull/807) Add support for `current_period_end` and `current_period_start` filters when listing `Invoice`. diff --git a/README.md b/README.md index da21358c7a..aa22223281 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 v57.5.0 + github.com/stripe/stripe-go v57.6.0 ) ``` diff --git a/VERSION b/VERSION index bcb89b5237..f3ea9ddbb0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -57.5.0 +57.6.0 diff --git a/stripe.go b/stripe.go index 980d504135..b0db23ce74 100644 --- a/stripe.go +++ b/stripe.go @@ -820,7 +820,7 @@ const apiURL = "https://api.stripe.com" const apiversion = "2019-02-19" // clientversion is the binding version -const clientversion = "57.5.0" +const clientversion = "57.6.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