Compare commits

..

2 Commits

Author SHA1 Message Date
Annie Li
5fb10bdfd3 Bump version to 8.5.0 2023-03-30 13:26:51 -07:00
stripe-openapi[bot]
8a7d5aacc7
Update generated code for v285 (#1203)
Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
2023-03-30 13:19:22 -07:00
5 changed files with 9 additions and 5 deletions

View File

@ -1,5 +1,11 @@
# Changelog # Changelog
## 8.5.0 - 2023-03-30
* [#1203](https://github.com/stripe/stripe-ruby/pull/1203) Update generated code
* Remove support for `create` method on resource `Tax.Transaction`
* This is not a breaking change, as this method was deprecated before the Tax Transactions API was released in favor of the `create_from_calculation` method.
* [#1201](https://github.com/stripe/stripe-ruby/pull/1201) Update save deprecation message
## 8.4.0 - 2023-03-23 ## 8.4.0 - 2023-03-23
* [#1197](https://github.com/stripe/stripe-ruby/pull/1197) Update generated code (new) * [#1197](https://github.com/stripe/stripe-ruby/pull/1197) Update generated code (new)
* Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction` * Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction`

View File

@ -1 +1 @@
v277 v285

View File

@ -1 +1 @@
8.4.0 8.5.0

View File

@ -5,8 +5,6 @@ module Stripe
module Tax module Tax
# A Tax transaction records the tax collected from or refunded to your customer. # A Tax transaction records the tax collected from or refunded to your customer.
class Transaction < APIResource class Transaction < APIResource
extend Stripe::APIOperations::Create
OBJECT_NAME = "tax.transaction" OBJECT_NAME = "tax.transaction"
def list_line_items(params = {}, opts = {}) def list_line_items(params = {}, opts = {})

View File

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