From 616b81e72fe67ce67e332c446513ef89b9d816dc Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Thu, 31 Oct 2024 08:07:53 +0100 Subject: [PATCH] Version 0.0.17 (#183) --- CHANGELOG.md | 4 ++++ python_multipart/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56dbb3f..9a6fbba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.0.17 (2024-10-31) + +* Handle PermissionError in fallback code for old import name [#182](https://github.com/Kludex/python-multipart/pull/182). + ## 0.0.16 (2024-10-27) * Add dunder attributes to `multipart` package [#177](https://github.com/Kludex/python-multipart/pull/177). diff --git a/python_multipart/__init__.py b/python_multipart/__init__.py index a2d50d2..be8327f 100644 --- a/python_multipart/__init__.py +++ b/python_multipart/__init__.py @@ -2,7 +2,7 @@ __author__ = "Andrew Dunham" __license__ = "Apache" __copyright__ = "Copyright (c) 2012-2013, Andrew Dunham" -__version__ = "0.0.16" +__version__ = "0.0.17" from .multipart import ( BaseParser,