Bump version to 4.12.0

This commit is contained in:
Olivier Bellone 2019-04-02 10:28:11 -07:00
parent 0790bb4154
commit 51d167aa29
No known key found for this signature in database
GPG Key ID: 11E77E3AA0C40303
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## 4.12.0 - 2019-04-02
* [#752](https://github.com/stripe/stripe-ruby/pull/752) Add `.delete` class method on deletable API resources
* [#754](https://github.com/stripe/stripe-ruby/pull/754) Add class methods for all custom API requests (e.g. `Charge.capture`)
## 4.11.0 - 2019-03-26
* [#753](https://github.com/stripe/stripe-ruby/pull/753) Add a global proxy configuration parameter

View File

@ -1 +1 @@
4.11.0
4.12.0

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Stripe
VERSION = "4.11.0".freeze
VERSION = "4.12.0".freeze
end