From 9379b3cb94d8542cd8796f7da1e7a0c651e22aa1 Mon Sep 17 00:00:00 2001 From: Brandur Date: Tue, 2 Apr 2019 19:58:02 -0700 Subject: [PATCH] Bump version to 60.0.1 --- 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 db3b4ef1e0..3b5903df7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 60.0.1 - 2019-04-02 +* [#825](https://github.com/stripe/stripe-go/pull/825) Fix the API for usage record summary listing + ## 60.0.0 - 2019-03-27 * [#820](https://github.com/stripe/stripe-go/pull/820) Add various missing parameters * On `PIIParams` the previous `PersonalIDNumber` is fixed to `IDNumber` which we're releasing as a minor breaking change even though the old version probably didn't work correctly diff --git a/README.md b/README.md index 2ce3e0c7b5..34f3427c76 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 v60.0.0 + github.com/stripe/stripe-go v60.0.1 ) ``` diff --git a/VERSION b/VERSION index c9a88e1e60..02efe1f3b5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -60.0.0 +60.0.1 diff --git a/stripe.go b/stripe.go index a131de954d..6d41e875a7 100644 --- a/stripe.go +++ b/stripe.go @@ -796,7 +796,7 @@ func StringValue(v *string) string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "60.0.0" +const clientversion = "60.0.1" // 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