summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Kislyuk <kislyuk@gmail.com>2023-04-03 22:19:45 -0700
committerAndrey Kislyuk <kislyuk@gmail.com>2023-04-03 22:19:45 -0700
commit2297478c10711433295f9cc4e8887e91bba41a64 (patch)
tree52a72cc5ce9341772b8bb2be63efe28f3c01059e
parent96b73ec68d82b8c5c984f2ca3b2b830b729afeb1 (diff)
v3.2.0v3.2.0
-rw-r--r--Changes.rst9
-rw-r--r--docs/cli-doc.txt2
-rwxr-xr-xsetup.py2
3 files changed, 11 insertions, 2 deletions
diff --git a/Changes.rst b/Changes.rst
index 1fba343..77d1248 100644
--- a/Changes.rst
+++ b/Changes.rst
@@ -1,3 +1,12 @@
+Changes for v3.2.0 (2023-04-03)
+===============================
+
+- Use tomlkit instead of toml
+
+- Add security policy
+
+- Documentation and release infrastructure improvements
+
Changes for v3.1.1 (2023-02-21)
===============================
diff --git a/docs/cli-doc.txt b/docs/cli-doc.txt
index e0d9cae..7198b22 100644
--- a/docs/cli-doc.txt
+++ b/docs/cli-doc.txt
@@ -1,6 +1,6 @@
usage: yq [options] <jq filter> [input file...]
[--indentless-lists] [--in-place] [--version]
- [jq_filter] [files ...]
+ [jq_filter] [files [files ...]]
yq: Command-line YAML processor - jq wrapper for YAML documents
diff --git a/setup.py b/setup.py
index 578e3dd..0d194b8 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from setuptools import find_packages, setup
setup(
name="yq",
- version="3.1.1",
+ version="3.2.0",
url="https://github.com/kislyuk/yq",
license="Apache Software License",
author="Andrey Kislyuk",