diff --git a/CHANGELOG.md b/CHANGELOG.md index c4a66d6..7536b06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 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)) + ## 1.0.2 * [FIX] fix `decode` output when both `strict_null_handling` and `allow_empty_lists` are set to `True` ([#5](https://github.com/techouse/qs_codec/pull/5)) diff --git a/src/qs_codec/__init__.py b/src/qs_codec/__init__.py index d8f75e1..8b1b544 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.2" +__version__ = "1.0.3" from .decode import decode from .encode import encode