From 1d99956adca12a051c475e0740e7ccd8963ba2f4 Mon Sep 17 00:00:00 2001 From: Brandur Date: Fri, 27 Jul 2018 11:04:52 -0700 Subject: [PATCH] Bump version to 36.3.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 380df3a74d..16cbeb969d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 36.3.0 - 2018-07-27 +* [#636](https://github.com/stripe/stripe-go/pull/636) Add `RiskScore` to `ChargeOutcome` + ## 36.2.0 - 2018-07-26 * [#635](https://github.com/stripe/stripe-go/pull/635) Add support for Stripe Issuing diff --git a/VERSION b/VERSION index b7c5a4bfb0..483db828e8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -36.2.0 +36.3.0 diff --git a/stripe.go b/stripe.go index e865387863..f4d5cd0d2d 100644 --- a/stripe.go +++ b/stripe.go @@ -691,7 +691,7 @@ const apiURL = "https://api.stripe.com" const apiversion = "2018-02-06" // clientversion is the binding version -const clientversion = "36.2.0" +const clientversion = "36.3.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