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,