From 18bbb5c948a3591f02ac2c83c08db1f5cae6c444 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Thu, 24 Oct 2024 16:39:47 +0200 Subject: [PATCH] Version 0.41.1 (#2736) --- docs/release-notes.md | 7 +++++++ starlette/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index ceb02c6b..40ec2907 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -3,6 +3,13 @@ hide: navigation toc_depth: 2 --- +## 0.41.1 (October 24, 2024) + +#### Fixed + +* Bump minimum `python-multipart` version to `0.0.13` [#2734](https://github.com/encode/starlette/pull/2734). +* Change `python-multipart` import to `python_multipart` [#2733](https://github.com/encode/starlette/pull/2733). + ## 0.41.0 (October 15, 2024) #### Added diff --git a/starlette/__init__.py b/starlette/__init__.py index 22ffde20..d0ccb05a 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.41.0" +__version__ = "0.41.1"