We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a790e40 commit 293ea34Copy full SHA for 293ea34
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Changelog
2
3
+## 0.0.11 (2024-09-28)
4
+
5
+* Improve performance, especially in data with many CR-LF [#137](https://github.com/Kludex/python-multipart/pull/137).
6
+* Handle invalid CRLF in header name [#141](https://github.com/Kludex/python-multipart/pull/141).
7
8
## 0.0.10 (2024-09-21)
9
10
* Support `on_header_begin` [#103](https://github.com/Kludex/python-multipart/pull/103).
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,
0 commit comments