diff --git a/CHANGELOG.md b/CHANGELOG.md index 1272cdd..3e7144f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## [v0.3.4] - 2026-04-30 ### Fixed - **Query repair suggestions** now handle dotted string literals, sparse arrays, nested leaf matches, quoted special-character keys, `from` queries, expression fields, and selected aliases in `having` clauses. diff --git a/jonq/constants.py b/jonq/constants.py index 2b08f5c..1f3a1a6 100644 --- a/jonq/constants.py +++ b/jonq/constants.py @@ -1,6 +1,6 @@ from __future__ import annotations -VERSION = "0.3.3" +VERSION = "0.3.4" USER_AGENT = f"jonq/{VERSION}" diff --git a/pyproject.toml b/pyproject.toml index 098c3a7..519e372 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "jonq" -version = "0.3.3" +version = "0.3.4" description = "Readable jq for JSON extraction and exploration" readme = "README.md" requires-python = ">=3.9"