diff --git a/Changes.rst b/Changes.rst index ebb9c22..057374d 100644 --- a/Changes.rst +++ b/Changes.rst @@ -1,3 +1,8 @@ +Changes for v3.4.2 (2024-04-26) +=============================== + +Constrain setuptools_scm version + Changes for v3.4.1 (2024-04-17) =============================== diff --git a/docs/cli-doc-xq.txt b/docs/cli-doc-xq.txt index 8a7900c..54bfcbf 100644 --- a/docs/cli-doc-xq.txt +++ b/docs/cli-doc-xq.txt @@ -1,4 +1,5 @@ usage: xq [options] [input file...] + [--version] [jq_filter] [files ...] xq: Command-line XML processor - jq wrapper for XML documents @@ -13,10 +14,10 @@ positional arguments: options: -h, --help show this help message and exit --xml-output, -x Transcode jq JSON output back into XML and emit it + --xml-item-depth 123 Specify depth of items to emit (default 0; use a positive integer to stream large docs) --xml-dtd Preserve XML Document Type Definition (disables streaming of multiple docs) --xml-root XML_ROOT When transcoding back to XML, envelope the output in an element with this name - --xml-force-list XML_FORCE_LIST - Tag name to pass to force_list parameter of xmltodict.parse(). Can be used multiple times. + --xml-force-list ELT Emit a list for elements with this name even if they occur only once (option can repeat) --in-place, -i Edit files in place (no backup - use caution) --version show program's version number and exit diff --git a/docs/cli-doc.txt b/docs/cli-doc.txt index 0d20fa5..b90e694 100644 --- a/docs/cli-doc.txt +++ b/docs/cli-doc.txt @@ -1,5 +1,6 @@ usage: yq [options] [input file...] - [--indentless-lists] [--in-place] [--version] + [--indentless-lists] [--explicit-start] [--explicit-end] + [--in-place] [--version] [jq_filter] [files ...] yq: Command-line YAML processor - jq wrapper for YAML documents @@ -23,6 +24,8 @@ options: When using --yaml-output, specify string wrap width --indentless-lists, --indentless When using --yaml-output, indent block style lists (sequences) with 0 spaces instead of 2 + --explicit-start When using --yaml-output, always emit explicit document start ("---") + --explicit-end When using --yaml-output, always emit explicit document end ("...") --in-place, -i Edit files in place (no backup - use caution) --version show program's version number and exit diff --git a/setup.py b/setup.py index c2a087b..97b4547 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="yq", - version="3.4.1", + version="3.4.2", url="https://github.com/kislyuk/yq", license="Apache Software License", author="Andrey Kislyuk",