Skip to content

Commit 4ccfb3a

Browse files
authored
Version 0.0.6 (#60)
1 parent a4f2f40 commit 4ccfb3a

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
## 0.0.6 (2023-02-27)
4+
5+
* Migrate package installation to `pyproject.toml` (PEP 621) [#54](https://github.com/andrew-d/python-multipart/pull/54).
6+
* Use yaml.safe_load instead of yaml.load [#46](https://github.com/andrew-d/python-multipart/pull/46).
7+
* Add support for Python 3.11, drop EOL 3.6 [#51](https://github.com/andrew-d/python-multipart/pull/51).
8+
* Add support for Python 3.8-3.10, drop EOL 2.7-3.5 [#42](https://github.com/andrew-d/python-multipart/pull/42).
9+
* `QuerystringParser`: don't raise an AttributeError in `__repr__` [#30](https://github.com/andrew-d/python-multipart/pull/30).

multipart/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import sys
2-
31
# This is the canonical package information.
42
__author__ = 'Andrew Dunham'
53
__license__ = 'Apache'
64
__copyright__ = "Copyright (c) 2012-2013, Andrew Dunham"
7-
__version__ = "0.0.5"
5+
__version__ = "0.0.6"
86

97

108
from .multipart import (

0 commit comments

Comments
 (0)