From 2a18553f370df1d00bfc6fb47aadbafaffd3c048 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Mon, 12 Aug 2024 20:19:58 +0200 Subject: [PATCH] :bookmark: release v1.0.3 ## 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)) --- CHANGELOG.md | 4 ++++ src/qs_codec/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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