We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 658a3ac commit e4c70e6Copy full SHA for e4c70e6
3 files changed
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Changelog
2
3
+## v0.1.2 (2026-06-04)
4
+
5
+- Fix: escape `"` inside quoted strings in `encode_generic`
6
+- Fix: quote empty strings as `""` per spec
7
8
## v0.1.1 (2026-06-03)
9
10
- `encode_generic`: encode arbitrary Python values into GCF tabular format
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "gcf-python"
-version = "0.1.1"
+version = "0.1.2"
description = "Python implementation of GCF (Graph Compact Format): token-optimized wire format for LLM tool responses"
readme = "README.md"
license = {text = "MIT"}
src/gcf/__init__.py
@@ -59,4 +59,4 @@
59
"encode_with_session",
60
]
61
62
-__version__ = "0.1.1"
+__version__ = "0.1.2"
0 commit comments