From 28eb75ab1c6b05559b2ad2c286615e20233eda7e Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Fri, 10 Apr 2026 16:03:59 +0200 Subject: [PATCH] Version 0.0.26 --- CHANGELOG.md | 5 +++++ python_multipart/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0418bb5..d325c84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.0.26 (2026-04-10) + +* Skip preamble before the first multipart boundary more efficiently [#262](https://github.com/Kludex/python-multipart/pull/262). +* Silently discard epilogue data after the closing multipart boundary [#259](https://github.com/Kludex/python-multipart/pull/259). + ## 0.0.25 (2026-04-10) * Add MIME content type info to `File` [#143](https://github.com/Kludex/python-multipart/pull/143). diff --git a/python_multipart/__init__.py b/python_multipart/__init__.py index d0d54e8..93ef176 100644 --- a/python_multipart/__init__.py +++ b/python_multipart/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.0.25" +__version__ = "0.0.26" from .multipart import ( BaseParser,