diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7373025 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## 0.0.6 (2023-02-27) + +* Migrate package installation to `pyproject.toml` (PEP 621) [#54](https://github.com/andrew-d/python-multipart/pull/54). +* Use yaml.safe_load instead of yaml.load [#46](https://github.com/andrew-d/python-multipart/pull/46). +* Add support for Python 3.11, drop EOL 3.6 [#51](https://github.com/andrew-d/python-multipart/pull/51). +* Add support for Python 3.8-3.10, drop EOL 2.7-3.5 [#42](https://github.com/andrew-d/python-multipart/pull/42). +* `QuerystringParser`: don't raise an AttributeError in `__repr__` [#30](https://github.com/andrew-d/python-multipart/pull/30). diff --git a/multipart/__init__.py b/multipart/__init__.py index 39e5605..309d698 100644 --- a/multipart/__init__.py +++ b/multipart/__init__.py @@ -1,10 +1,8 @@ -import sys - # This is the canonical package information. __author__ = 'Andrew Dunham' __license__ = 'Apache' __copyright__ = "Copyright (c) 2012-2013, Andrew Dunham" -__version__ = "0.0.5" +__version__ = "0.0.6" from .multipart import (