From 293ea342c64328819862259877c0d3b7af4f3734 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sat, 28 Sep 2024 12:24:15 +0200 Subject: [PATCH] Version 0.0.11 (#158) --- CHANGELOG.md | 5 +++++ multipart/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2be283b..da7ae82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.0.11 (2024-09-28) + +* Improve performance, especially in data with many CR-LF [#137](https://github.com/Kludex/python-multipart/pull/137). +* Handle invalid CRLF in header name [#141](https://github.com/Kludex/python-multipart/pull/141). + ## 0.0.10 (2024-09-21) * Support `on_header_begin` [#103](https://github.com/Kludex/python-multipart/pull/103). diff --git a/multipart/__init__.py b/multipart/__init__.py index a3c7229..a813076 100644 --- a/multipart/__init__.py +++ b/multipart/__init__.py @@ -2,7 +2,7 @@ __author__ = "Andrew Dunham" __license__ = "Apache" __copyright__ = "Copyright (c) 2012-2013, Andrew Dunham" -__version__ = "0.0.10" +__version__ = "0.0.11" from .multipart import ( BaseParser,