From e3ee617f0507c69047f30f58c25754e0636ae7c2 Mon Sep 17 00:00:00 2001 From: Jesse Rosalia Date: Wed, 1 Apr 2026 16:48:14 -0700 Subject: [PATCH] Bump version to 15.0.1 --- CHANGELOG.md | 5 +++++ VERSION | 2 +- pyproject.toml | 2 +- stripe/_version.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be2e2416d..ddbd17c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 15.0.1 - 2026-04-01 +* [#1786](https://github.com/stripe/stripe-python/pull/1786) Fix encoding two-dimensional array request params +* [#1785](https://github.com/stripe/stripe-python/pull/1785) Improve types for `metadata` and other dict-like types +* [#1780](https://github.com/stripe/stripe-python/pull/1780) Fix `str` / `repr` for `StripeObjects` with decimals & add support for plain dicts + ## 15.0.0 - 2026-03-25 This release changes the pinned API version to `2026-03-25.dahlia` and contains breaking changes (prefixed with ⚠️ below). There's also a [detailed migration guide](https://github.com/stripe/stripe-python/wiki/Migration-guide-for-v15) to simplify your upgrade process. diff --git a/VERSION b/VERSION index 94188a748..2bbd2b4b4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -15.0.0 +15.0.1 diff --git a/pyproject.toml b/pyproject.toml index b802b7286..87d22ca9c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "stripe" -version = "15.0.0" +version = "15.0.1" readme = "README.md" description = "Python bindings for the Stripe API" authors = [{ name = "Stripe", email = "support@stripe.com" }] diff --git a/stripe/_version.py b/stripe/_version.py index b18530e7d..f3c782860 100644 --- a/stripe/_version.py +++ b/stripe/_version.py @@ -1 +1 @@ -VERSION = "15.0.0" +VERSION = "15.0.1"