Bump version to 10.15.0

This commit is contained in:
Ramya Rao 2024-04-09 14:12:17 -07:00
parent dfea3bdac5
commit ec5152c82e
3 changed files with 11 additions and 2 deletions

View File

@ -1,4 +1,13 @@
# Changelog
## 10.15.0 - 2024-04-09
* [#1377](https://github.com/stripe/stripe-ruby/pull/1377) Add last_response to StripeObject
* Users can now retrieve raw response from the returned resource, using the `last_response` property. See [README](https://github.com/stripe/stripe-ruby/blob/master/README.md) for an example.
* [#1372](https://github.com/stripe/stripe-ruby/pull/1372) Update generated code
* Add support for new resources `Entitlements.ActiveEntitlement` and `Entitlements.Feature`
* Add support for `list` and `retrieve` methods on resource `ActiveEntitlement`
* Add support for `create`, `list`, `retrieve`, and `update` methods on resource `Feature`
* [#1366](https://github.com/stripe/stripe-ruby/pull/1366) Move executables to `exe` folder
## 10.14.0 - 2024-03-28
* [#1369](https://github.com/stripe/stripe-ruby/pull/1369) Update generated code
* Add support for new resources `Billing.MeterEventAdjustment`, `Billing.MeterEvent`, and `Billing.Meter`

View File

@ -1 +1 @@
10.14.0
10.15.0

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Stripe
VERSION = "10.14.0"
VERSION = "10.15.0"
end