summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Kislyuk <andrey.kislyuk@color.com>2024-04-26 10:48:14 -0700
committerAndrey Kislyuk <andrey.kislyuk@color.com>2024-04-26 10:48:14 -0700
commit762194a326b653bb6f4a35a4eeb54e1e683bb886 (patch)
tree859fffcfeb2324cc8c4f52f5b7406cc74fdf5fc3
parent913a2ac6d82bf389abacc8f372536a836a3d3075 (diff)
v3.4.2v3.4.2
-rw-r--r--Changes.rst5
-rw-r--r--docs/cli-doc-xq.txt5
-rw-r--r--docs/cli-doc.txt5
-rwxr-xr-xsetup.py2
4 files changed, 13 insertions, 4 deletions
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] <jq filter> [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] <jq filter> [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 @@ from setuptools import find_packages, setup
setup(
name="yq",
- version="3.4.1",
+ version="3.4.2",
url="https://github.com/kislyuk/yq",
license="Apache Software License",
author="Andrey Kislyuk",