Skip to content

Commit

Permalink
v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Jul 24, 2022
1 parent e0cdf61 commit 5979f1e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Changes.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Changes for v3.1.0 (2022-07-24)
===============================

- Use configurable output grammar, compatible with YAML 1.1

Changes for v3.0.2 (2022-07-05)
===============================

Expand Down
3 changes: 3 additions & 0 deletions docs/cli-doc.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
usage: yq [options] <jq filter> [input file...]
[--indentless-lists] [--in-place] [--version]
[jq_filter] [files [files ...]]

yq: Command-line YAML processor - jq wrapper for YAML documents
Expand All @@ -16,6 +17,8 @@ optional arguments:
Transcode jq JSON output back into YAML and emit it
--yaml-roundtrip, --yml-roundtrip, -Y
Transcode jq JSON output back into YAML and emit it. Preserve YAML tags and styles by representing them as extra items in their enclosing mappings and sequences while in JSON. This option is incompatible with jq filters that do not expect these extra items.
--yaml-output-grammar-version {1.1,1.2}, --yml-out-ver {1.1,1.2}
When using --yaml-output, specify output grammar (the default is 1.1 and will be changed to 1.2 in a future version). Setting this to 1.2 will cause strings like 'on' and 'no' to be emitted unquoted.
--width WIDTH, -w WIDTH
When using --yaml-output, specify string wrap width
--indentless-lists, --indentless
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.0.2",
version="3.1.0",
url="https://github.com/kislyuk/yq",
license="Apache Software License",
author="Andrey Kislyuk",
Expand Down

0 comments on commit 5979f1e

Please sign in to comment.