From d00899f4073c4afc93e37a8d5a717087fb6ed66d Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Mon, 16 Dec 2024 20:43:09 +0100 Subject: [PATCH] Version 0.0.20 --- CHANGELOG.md | 4 ++++ python_multipart/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50074c8..f0d80aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.0.20 (2024-12-16) + +* Handle messages containing only end boundary [#142](https://github.com/Kludex/python-multipart/pull/142). + ## 0.0.19 (2024-11-30) * Don't warn when CRLF is found after last boundary on `MultipartParser` [#193](https://github.com/Kludex/python-multipart/pull/193). diff --git a/python_multipart/__init__.py b/python_multipart/__init__.py index d555f80..e426526 100644 --- a/python_multipart/__init__.py +++ b/python_multipart/__init__.py @@ -2,7 +2,7 @@ __author__ = "Andrew Dunham" __license__ = "Apache" __copyright__ = "Copyright (c) 2012-2013, Andrew Dunham" -__version__ = "0.0.19" +__version__ = "0.0.20" from .multipart import ( BaseParser,