Skip to content

Commit

Permalink
🔖 release v1.0.2
Browse files Browse the repository at this point in the history
## 1.0.2

* [FIX] fix `decode` output when both `strict_null_handling` and `allow_empty_lists` are set to `True` ([#5](#5))
  • Loading branch information
techouse committed Jul 16, 2024
1 parent 30c29c5 commit 36550c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/qs_codec/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 36550c9

Please sign in to comment.