Bump version to 5.0.0

This commit is contained in:
Olivier Bellone 2019-08-20 12:09:17 -07:00
parent 6fc69414e2
commit b31632aec9
No known key found for this signature in database
GPG Key ID: 11E77E3AA0C40303
3 changed files with 24 additions and 2 deletions

View File

@ -1,5 +1,27 @@
# Changelog
## 5.0.0 - 2019-08-20
Major version release. The [migration guide](https://github.com/stripe/stripe-ruby/wiki/Migration-guide-for-v5) contains a detailed list of backwards-incompatible changes with upgrade instructions.
Pull requests included in this release (cf. [#815](https://github.com/stripe/stripe-ruby/pull/815)) (⚠️ = breaking changes):
* [x] ⚠️ #813: Convert library to use built-in `Net::HTTP`
* [x] ⚠️ #816: Make `code` argument in `CardError` named instead of positional.
* [x] ⚠️ #817: Drop support for very old Ruby versions.
* [x] #818: Bump Rubocop to latest version
* [x] #819: Ruby minimum version increase followup
* [x] ⚠️ #820: Remove old deprecated methods
* [x] ⚠️ #823: Remove all alias for list methods
* [x] ⚠️ #826: Remove `UsageRecord.create` method
* [x] ⚠️ #827: Remove `IssuerFraudRecord`
* [x] #811: Add `ErrorObject` to `StripeError` exceptions
* [x] #828: Tweak retry logic to be a little more like stripe-node
* [x] #829: Reset connections when connection-changing configuration changes (optional)
* [x] #830: Fix inverted sign for 500 retries
* [x] ⚠️#831: Remove a few more very old deprecated methods
* [x] #832: Minor cleanup in `StripeClient`
* [x] #833: Do better bookkeeping when tracking state in `Thread.current`
* [x] #834: Add `Invoice.list_upcoming_line_items` method
## 4.24.0 - 2019-08-12
* [#825](https://github.com/stripe/stripe-ruby/pull/825) Add `SubscriptionItem.create_usage_record` method
- This release also removed the `SubscriptionSchedule.revisions` method. This should have been included in the previous release (4.23.0)

View File

@ -1 +1 @@
4.24.0
5.0.0

View File

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