summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Kislyuk <kislyuk@gmail.com>2023-04-04 18:36:26 -0700
committerAndrey Kislyuk <kislyuk@gmail.com>2023-04-04 18:36:26 -0700
commit65f530ab8076aca7571e3964905c82674fd57825 (patch)
treeadf83f5e189f4e58ab6e31ef8dff9028128a88d5
parent6a507d78ec0dc5555bc6ec05d29c163dab0c59e9 (diff)
v3.2.1v3.2.1
-rw-r--r--Changes.rst6
-rw-r--r--docs/cli-doc.txt2
-rwxr-xr-xsetup.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/Changes.rst b/Changes.rst
index 77d1248..fd3e5db 100644
--- a/Changes.rst
+++ b/Changes.rst
@@ -1,3 +1,9 @@
+Changes for v3.2.1 (2023-04-04)
+===============================
+
+- Relax tomlkit dependency version range to preserve Python 3.6
+ compatibility (#165)
+
Changes for v3.2.0 (2023-04-03)
===============================
diff --git a/docs/cli-doc.txt b/docs/cli-doc.txt
index 7198b22..e0d9cae 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 [files ...]]
+ [jq_filter] [files ...]
yq: Command-line YAML processor - jq wrapper for YAML documents
diff --git a/setup.py b/setup.py
index 801cbc0..6ee22ba 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from setuptools import find_packages, setup
setup(
name="yq",
- version="3.2.0",
+ version="3.2.1",
url="https://github.com/kislyuk/yq",
license="Apache Software License",
author="Andrey Kislyuk",