From e9c94ea927946d963120999d50dd6384b46b563f Mon Sep 17 00:00:00 2001 From: Brandur Date: Tue, 11 Sep 2018 16:27:17 -0600 Subject: [PATCH] Bump version to 49.1.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 461afedeb1..faf4a16f89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 49.1.0 - 2018-09-11 +* [#694](https://github.com/stripe/stripe-go/pull/694) Add `ErrorCodeResourceMissing` error code constant + ## 49.0.0 - 2018-09-11 * [#693](https://github.com/stripe/stripe-go/pull/693) Change `Product` under `Plan` from a string to a full `Product` struct pointer (this is a minor breaking change -- upgrade by changing to `plan.Product.ID`) diff --git a/VERSION b/VERSION index cfb3b31ea7..a7bb54ffda 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -49.0.0 +49.1.0 diff --git a/stripe.go b/stripe.go index d817904d1d..19a80429e3 100644 --- a/stripe.go +++ b/stripe.go @@ -785,7 +785,7 @@ const apiURL = "https://api.stripe.com" const apiversion = "2018-08-23" // clientversion is the binding version -const clientversion = "49.0.0" +const clientversion = "49.1.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