From 4ecf59a9187da2d9051b4169b500169cb000f289 Mon Sep 17 00:00:00 2001 From: Brandur Date: Mon, 29 Jan 2018 11:43:08 -0800 Subject: [PATCH] Bump version to 28.11.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 6ff0ef40d3..88c5420224 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 28.11.0 - 2018-01-29 +* [#516](https://github.com/stripe/stripe-go/pull/516) Add `AmountZero` to `PlanParams` to it's possible to send zero values when creating or updating a plan + ## 28.10.1 - 2018-01-18 * [#512](https://github.com/stripe/stripe-go/pull/512) Encode empty values found in maps (like `Meta`) diff --git a/VERSION b/VERSION index a25ffafbed..15ca2b023e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -28.10.1 +28.11.0 diff --git a/stripe.go b/stripe.go index 2dbefff677..c212a23b36 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.10.1" +const clientversion = "28.11.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