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,