diff --git a/CHANGELOG.md b/CHANGELOG.md index abf5bda..c177948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.0.13 (2024-10-20) + +* Rename import to `python_multipart` [#166](https://github.com/Kludex/python-multipart/pull/166). + ## 0.0.12 (2024-09-29) * Improve error message when boundary character does not match [#124](https://github.com/Kludex/python-multipart/pull/124). diff --git a/python_multipart/__init__.py b/python_multipart/__init__.py index 5fd2f41..312194a 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.12" +__version__ = "0.0.13" from .multipart import ( BaseParser,