diff --git a/CHANGELOG.md b/CHANGELOG.md index d325c84..c26ff6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.0.27 (2026-04-27) + +* Add multipart header limits [#267](https://github.com/Kludex/python-multipart/pull/267). +* Pass parse offsets via constructors [#268](https://github.com/Kludex/python-multipart/pull/268). + ## 0.0.26 (2026-04-10) * Skip preamble before the first multipart boundary more efficiently [#262](https://github.com/Kludex/python-multipart/pull/262). diff --git a/python_multipart/__init__.py b/python_multipart/__init__.py index 93ef176..191a192 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.26" +__version__ = "0.0.27" from .multipart import ( BaseParser,