diff --git a/CHANGELOG.md b/CHANGELOG.md index c771b37b..127e7bbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 5.8.0 - 2019-11-05 +* [#879](https://github.com/stripe/stripe-ruby/pull/879) Add support for `Mandate` +* [#876](https://github.com/stripe/stripe-ruby/pull/876) Add additional per-request configuration documentation +* [#874](https://github.com/stripe/stripe-ruby/pull/874) Raise an error when requests params are invalid +* [#873](https://github.com/stripe/stripe-ruby/pull/873) Contributor Covenant + ## 5.7.1 - 2019-10-15 * [#869](https://github.com/stripe/stripe-ruby/pull/869) Fixes the misnamed `connection_base=` setter to be named `connect_base=` diff --git a/VERSION b/VERSION index 64ff7ded..11d9efa3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.7.1 +5.8.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 644b6223..856c570c 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "5.7.1" + VERSION = "5.8.0" end