diff --git a/CHANGELOG.md b/CHANGELOG.md index 3689f1a08..d3e1da7fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 3.25.0 - 2018-08-28 +* [#678](https://github.com/stripe/stripe-ruby/pull/678) Allow payment intent `#cancel`, `#capture`, and `#confirm` to take their own parameters + ## 3.24.0 - 2018-08-27 * [#675](https://github.com/stripe/stripe-ruby/pull/675) Remove support for `BitcoinReceiver` write-actions diff --git a/VERSION b/VERSION index 954e22882..091444313 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.24.0 +3.25.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 1557ee057..bbdb3c847 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "3.24.0".freeze + VERSION = "3.25.0".freeze end