From 350fd77903d398a48afb49d709014ed57fbc90ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Thu, 29 Aug 2024 20:50:25 +0100 Subject: [PATCH] :bookmark: release v1.0.4 ## 1.0.4 * [FIX] `decode`: avoid a crash with `comma=True`, `charset=Charset.LATIN1`, `interpret_numeric_entities=True` * [CHORE] add more tests --- CHANGELOG.md | 5 +++++ src/qs_codec/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7536b06..6060c6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.4 + +* [FIX] `decode`: avoid a crash with `comma=True`, `charset=Charset.LATIN1`, `interpret_numeric_entities=True` +* [CHORE] add more tests + ## 1.0.3 * [FEAT] add `DecodeOptions.strict_depth` option to throw when input is beyond depth ([#8](https://github.com/techouse/qs_codec/pull/8)) diff --git a/src/qs_codec/__init__.py b/src/qs_codec/__init__.py index 8b1b544..dbd9007 100644 --- a/src/qs_codec/__init__.py +++ b/src/qs_codec/__init__.py @@ -1,6 +1,6 @@ """A query string encoding and decoding library for Python. Ported from qs_codec for JavaScript.""" -__version__ = "1.0.3" +__version__ = "1.0.4" from .decode import decode from .encode import encode