From 3f7233d02196d3b66cb07be294b17f2425241959 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sun, 29 Sep 2024 10:10:50 +0200 Subject: [PATCH] Version 0.0.12 (#160) --- CHANGELOG.md | 6 ++++++ multipart/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da7ae82..abf5bda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.0.12 (2024-09-29) + +* Improve error message when boundary character does not match [#124](https://github.com/Kludex/python-multipart/pull/124). +* Add mypy strict typing [#140](https://github.com/Kludex/python-multipart/pull/140). +* Enforce 100% coverage [#159](https://github.com/Kludex/python-multipart/pull/159). + ## 0.0.11 (2024-09-28) * Improve performance, especially in data with many CR-LF [#137](https://github.com/Kludex/python-multipart/pull/137). diff --git a/multipart/__init__.py b/multipart/__init__.py index a813076..5fd2f41 100644 --- a/multipart/__init__.py +++ b/multipart/__init__.py @@ -2,7 +2,7 @@ __author__ = "Andrew Dunham" __license__ = "Apache" __copyright__ = "Copyright (c) 2012-2013, Andrew Dunham" -__version__ = "0.0.11" +__version__ = "0.0.12" from .multipart import ( BaseParser,