Skip to content

Commit 6a4555f

Browse files
committed
🔖 release v1.3.0
## 1.3.0 * [FEAT] add `EncodeOptions.comma_compact_nulls`, allowing omission of `None` entries in lists when using the `ListFormat.COMMA`. This results in cleaner output (e.g., `[True, False, None, True]` becomes `"true,false,true"`).
1 parent 06a2a92 commit 6a4555f

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.3.0
2+
3+
* [FEAT] add `EncodeOptions.comma_compact_nulls`, allowing omission of `None` entries in lists when using the `ListFormat.COMMA`. This results in cleaner output (e.g., `[True, False, None, True]` becomes `"true,false,true"`).
4+
15
## 1.2.5
26

37
* [CHORE] add support for Python 3.14

src/qs_codec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""
1515

1616
# Package version (PEP 440). Bump in lockstep with distribution metadata.
17-
__version__ = "1.2.5"
17+
__version__ = "1.3.0"
1818

1919
from .decode import decode, load, loads
2020
from .encode import dumps, encode

0 commit comments

Comments
 (0)