Skip to content

Commit

Permalink
Version 0.0.6 (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex committed Feb 27, 2023
1 parent a4f2f40 commit 4ccfb3a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
4 changes: 1 addition & 3 deletions multipart/__init__.py
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down

0 comments on commit 4ccfb3a

Please sign in to comment.