diff --git a/CHANGELOG.md b/CHANGELOG.md index f0d80aa..7604f3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.0.21 (2025-12-17) + +* Add support for Python 3.14 and drop EOL 3.8 and 3.9 [#216](https://github.com/Kludex/python-multipart/pull/216). + ## 0.0.20 (2024-12-16) * Handle messages containing only end boundary [#142](https://github.com/Kludex/python-multipart/pull/142). diff --git a/python_multipart/__init__.py b/python_multipart/__init__.py index e426526..dd2fb43 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.20" +__version__ = "0.0.21" from .multipart import ( BaseParser,