diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c25596..c4a66d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 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)) + ## 1.0.1 * [CHORE] update documentation diff --git a/src/qs_codec/__init__.py b/src/qs_codec/__init__.py index 689a032..d8f75e1 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.1" +__version__ = "1.0.2" from .decode import decode from .encode import encode