From a705fb222df92bba0cbc4c190bcbebf7dfe0b0cc Mon Sep 17 00:00:00 2001 From: Brandur Date: Thu, 2 Nov 2017 12:49:50 -0700 Subject: [PATCH] Bump version to 28.6.1 --- CHANGELOG.md | 3 +++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4691d136c9..dc8207b892 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 28.6.1 - 2017-11-02 +* [#492](https://github.com/stripe/stripe-go/pull/492) Correct name of user agent header used to send Go version to Stripe's API + ## 28.6.0 - 2017-10-31 * [#491](https://github.com/stripe/stripe-go/pull/491) Support for exchange rates APIs diff --git a/VERSION b/VERSION index 3881d3499b..d00fdf14c0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -28.6.0 +28.6.1 diff --git a/stripe.go b/stripe.go index 1040ac267d..308d9d9c9f 100644 --- a/stripe.go +++ b/stripe.go @@ -29,7 +29,7 @@ const ( const apiversion = "2017-05-25" // clientversion is the binding version -const clientversion = "28.6.0" +const clientversion = "28.6.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