diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e341a2..a08dc65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ # Changelog +## 0.0.15 (2024-10-27) + +* Replace `FutureWarning` to `PendingDeprecationWarning` [#174](https://github.com/Kludex/python-multipart/pull/174). +* Add missing files to SDist [#171](https://github.com/Kludex/python-multipart/pull/171). + ## 0.0.14 (2024-10-24) -* Fix import scheme for `multipart` module ([#168](https://github.com/user/repo/issues/168)). +* Fix import scheme for `multipart` module ([#168](https://github.com/Kludex/python-multipart/pull/168)). ## 0.0.13 (2024-10-20) diff --git a/python_multipart/__init__.py b/python_multipart/__init__.py index 80d5cc0..88df444 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.14" +__version__ = "0.0.15" from .multipart import ( BaseParser,