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