diff --git a/docs/release-notes.md b/docs/release-notes.md index c01b3c99f..454c69b95 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,10 @@ +## 0.25.0 + +February 14, 2023 + +### Fix +* Limit the number of fields and files when parsing `multipart/form-data` on the `MultipartParser` [8c74c2c](https://github.com/encode/starlette/commit/8c74c2c8dba7030154f8af18e016136bea1938fa) and [#2036](https://github.com/encode/starlette/pull/2036). + ## 0.24.0 February 6, 2023 diff --git a/starlette/__init__.py b/starlette/__init__.py index 770bb8d07..6fea77c01 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.24.0" +__version__ = "0.25.0"