From 8e7df0f711e93c8845dbb3b31cdb382b4a8ca8c5 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sat, 30 Nov 2024 20:46:55 +0100 Subject: [PATCH] Add changelog entry --- CHANGELOG.md | 4 ++++ python_multipart/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c7faf0..50074c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 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). + ## 0.0.18 (2024-11-28) * Hard break if found data after last boundary on `MultipartParser` [#189](https://github.com/Kludex/python-multipart/pull/189). diff --git a/python_multipart/__init__.py b/python_multipart/__init__.py index 69a3ed4..d555f80 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.18" +__version__ = "0.0.19" from .multipart import ( BaseParser,