diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d2645f09..fb07cbcbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.24.0 - 2019-04-03 +* [#543](https://github.com/stripe/stripe-python/pull/543) Add `delete` class method on deletable API resources +* [#547](https://github.com/stripe/stripe-python/pull/547) Add class methods for all custom API requests (e.g. `Charge.capture`) + ## 2.23.0 - 2019-03-18 * [#537](https://github.com/stripe/stripe-python/pull/537) Add support for the `PaymentMethod` resource and APIs * [#540](https://github.com/stripe/stripe-python/pull/540) Add support for retrieving a Checkout `Session` diff --git a/VERSION b/VERSION index e9763f6bf..ad2261920 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.23.0 +2.24.0 diff --git a/stripe/version.py b/stripe/version.py index 9b4fa879c..203e6c4bc 100644 --- a/stripe/version.py +++ b/stripe/version.py @@ -1 +1 @@ -VERSION = "2.23.0" +VERSION = "2.24.0"