From b60b734e74942872ba3285827fb95642614e9d76 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sun, 31 May 2026 21:21:03 +0200 Subject: [PATCH] Version 0.0.30 --- CHANGELOG.md | 6 ++++-- python_multipart/__init__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b64ce0..f8bda92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,10 @@ ## Unreleased -* Parse `application/x-www-form-urlencoded` bodies per the WHATWG URL standard, treating only `&` as a field separator. -* Ignore RFC 2231/5987 extended parameters (`name*`, `filename*`) in `parse_options_header`, keeping the plain parameter authoritative per [RFC 7578 §4.2](https://datatracker.ietf.org/doc/html/rfc7578#section-4.2). +## 0.0.30 (2026-05-31) + +* Parse `application/x-www-form-urlencoded` bodies per the WHATWG URL standard, treating only `&` as a field separator [#290](https://github.com/Kludex/python-multipart/pull/290). +* Ignore RFC 2231/5987 extended parameters (`name*`, `filename*`) in `parse_options_header`, keeping the plain parameter authoritative per [RFC 7578 §4.2](https://datatracker.ietf.org/doc/html/rfc7578#section-4.2) [#291](https://github.com/Kludex/python-multipart/pull/291). ## 0.0.29 (2026-05-17) diff --git a/python_multipart/__init__.py b/python_multipart/__init__.py index be89e91..f55f976 100644 --- a/python_multipart/__init__.py +++ b/python_multipart/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.0.29" +__version__ = "0.0.30" from .multipart import ( BaseParser,