From 2d4bd2fdd33a0c160c98a65a938a8159b360ef8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Sun, 24 Nov 2024 16:48:34 +0000 Subject: [PATCH] :bookmark: release v1.0.5 ## 1.0.5 * [FEAT] add `DecodeOptions.raise_on_limit_exceeded` option ([#11](https://github.com/techouse/qs_codec/pull/11)) * [CHORE] remove dead code in `Utils` * [CHORE] add more tests * [CHORE] update dependencies --- CHANGELOG.md | 8 ++++++++ src/qs_codec/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6060c6d..72a2d66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.0.5 + +* [FEAT] add `DecodeOptions.raise_on_limit_exceeded` option ([#11](https://github.com/techouse/qs_codec/pull/11)) +* [CHORE] remove dead code in `Utils` +* [CHORE] add more tests +* [CHORE] update dependencies + + ## 1.0.4 * [FIX] `decode`: avoid a crash with `comma=True`, `charset=Charset.LATIN1`, `interpret_numeric_entities=True` diff --git a/src/qs_codec/__init__.py b/src/qs_codec/__init__.py index dbd9007..e300d3f 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.4" +__version__ = "1.0.5" from .decode import decode from .encode import encode