Skip to content

Commit

Permalink
Bump version to 8.5.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
pakrym-stripe committed Feb 22, 2024
1 parent bbef5f9 commit 849ed8b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 8.5.0b1 - 2024-02-22
* [#1246](https://github.com/stripe/stripe-python/pull/1246) Update generated code for beta

* [#1239](https://github.com/stripe/stripe-python/pull/1239) Beta: Collapse HTTPClientAsync into HTTPClient
* ⚠️ Removes the `stripe.default_http_client_async` global and the `stripe.HTTPClientAsync` class.
* To set your own async-enabled http client, set `stripe.default_http_client` to a subclass of `stripe.HTTPClient` such as `stripe.HTTPXClient` that implements `.request_async`, `.sleep_async`, `.request_stream_async`, and `.close_async`.
* The default http client of the library is still `RequestsClient` for synchronous methods, that "falls back" to a `HTTPXClient` when asynchronous methods are called.

## 8.4.0 - 2024-02-22
* [#1241](https://github.com/stripe/stripe-python/pull/1241) Update generated code
- Add `InvoiceLineItem.modify` method.
Expand All @@ -11,8 +19,8 @@

## 8.4.0b1 - 2024-02-16
* [#1235](https://github.com/stripe/stripe-python/pull/1235) Update generated code for beta
* Add support for `payto` and `twint` payment methods throughout the API
* Add support for `decrement_authorization` method on resource `PaymentIntent`
* Add support for `payto` and `twint` payment methods throughout the API
* Add support for `decrement_authorization` method on resource `PaymentIntent`
* [#1236](https://github.com/stripe/stripe-python/pull/1236) Beta: StripeStreamResponseAsync.read helper
* [#1233](https://github.com/stripe/stripe-python/pull/1233) Beta: async streaming

Expand All @@ -30,7 +38,7 @@

## 8.3.0b1 - 2024-02-08
* [#1226](https://github.com/stripe/stripe-python/pull/1226) Update generated code for beta
* Add support for `payment_method_options` on `ConfirmationToken`
* Add support for `payment_method_options` on `ConfirmationToken`
* [#1228](https://github.com/stripe/stripe-python/pull/1228) Beta: add `_async` methods for StripeClient

## 8.2.0 - 2024-02-08
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.4.0b1
8.5.0b1
2 changes: 1 addition & 1 deletion stripe/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "8.4.0b1"
VERSION = "8.5.0b1"

0 comments on commit 849ed8b

Please sign in to comment.