From efba97429de24bdf463c63df4b19bec8ff122f69 Mon Sep 17 00:00:00 2001 From: Brandur Date: Tue, 3 Oct 2017 07:12:38 -0700 Subject: [PATCH] Bump version to 28.0.1 --- CHANGELOG | 4 ++++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 5a3d9b691b..76e7f44d00 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +28.0.1 2017-10-03 + Fix concurrent race in `form` package's encoding caches + Fix encoding of pointer-based scalars (e.g. `Active *bool` in `Product) + 28.0.0 2017-09-27 Change `Product.Get` to include `ProductParams` for request metadata Fix sending extra parameters on product and SKU requests diff --git a/VERSION b/VERSION index 0b4dfcf095..eebc120d38 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -28.0.0 +28.0.1 diff --git a/stripe.go b/stripe.go index b7eb62c9f7..731f0ea41a 100644 --- a/stripe.go +++ b/stripe.go @@ -28,7 +28,7 @@ const ( const apiversion = "2017-05-25" // clientversion is the binding version -const clientversion = "28.0.0" +const clientversion = "28.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