Skip to content

Commit

Permalink
🔖 release v1.0.5
Browse files Browse the repository at this point in the history
## 1.0.5

* [FEAT] add `DecodeOptions.raise_on_limit_exceeded` option ([#11](#11))
* [CHORE] remove dead code in `Utils`
* [CHORE] add more tests
* [CHORE] update dependencies
  • Loading branch information
techouse committed Nov 24, 2024
1 parent 465bd93 commit 2d4bd2f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
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.4"
__version__ = "1.0.5"

from .decode import decode
from .encode import encode
Expand Down

0 comments on commit 2d4bd2f

Please sign in to comment.