Skip to content

Commit 3035c45

Browse files
authored
Version 0.0.9 (#100)
1 parent c26e6d1 commit 3035c45

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 0.0.9 (2024-02-10)
4+
5+
* Add support for Python 3.12 [#85](https://github.com/Kludex/python-multipart/pull/85).
6+
* Drop support for Python 3.7 [#95](https://github.com/Kludex/python-multipart/pull/95).
7+
* Add `MultipartState(IntEnum)` [#96](https://github.com/Kludex/python-multipart/pull/96).
8+
* Add `QuerystringState` [#97](https://github.com/Kludex/python-multipart/pull/97).
9+
* Add `TypedDict` callbacks [#98](https://github.com/Kludex/python-multipart/pull/98).
10+
* Add config `TypedDict`s [#99](https://github.com/Kludex/python-multipart/pull/99).
11+
312
## 0.0.8 (2024-02-09)
413

514
* Check if Message.get_params return 3-tuple instead of str on parse_options_header [#79](https://github.com/Kludex/python-multipart/pull/79).

multipart/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__author__ = "Andrew Dunham"
33
__license__ = "Apache"
44
__copyright__ = "Copyright (c) 2012-2013, Andrew Dunham"
5-
__version__ = "0.0.8"
5+
__version__ = "0.0.9"
66

77
from .multipart import FormParser, MultipartParser, OctetStreamParser, QuerystringParser, create_form_parser, parse_form
88

0 commit comments

Comments
 (0)