Skip to content

Commit

Permalink
v3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Sep 9, 2023
1 parent c9a8480 commit ee87412
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
9 changes: 9 additions & 0 deletions Changes.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Changes for v3.2.3 (2023-09-09)
===============================

- test.py: use valid values for jsonargs. Fixes #172

- Allow editing toml in place (#171)

- Documentation improvements

Changes for v3.2.2 (2023-04-22)
===============================

Expand Down
2 changes: 1 addition & 1 deletion docs/cli-doc-tomlq.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ positional arguments:
jq_filter
files

optional arguments:
options:
-h, --help show this help message and exit
--toml-output, -t Transcode jq JSON output back into TOML and emit it
--in-place, -i Edit files in place (no backup - use caution)
Expand Down
8 changes: 3 additions & 5 deletions docs/cli-doc-xq.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ positional arguments:
jq_filter
files

optional 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 XML_ITEM_DEPTH
Specify depth of items to emit (default 0; use a positive integer to stream large docs)
--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
Emit a list for elements with this name even if they occur only once (option can repeat)
--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

Expand Down
7 changes: 5 additions & 2 deletions docs/cli-doc.txt
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -11,7 +12,7 @@ positional arguments:
jq_filter
files

optional arguments:
options:
-h, --help show this help message and exit
--yaml-output, --yml-output, -y
Transcode jq JSON output back into YAML and emit it
Expand All @@ -23,6 +24,8 @@ optional arguments:
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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="yq",
version="3.2.2",
version="3.2.3",
url="https://github.com/kislyuk/yq",
license="Apache Software License",
author="Andrey Kislyuk",
Expand Down

0 comments on commit ee87412

Please sign in to comment.