summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Kislyuk <kislyuk@gmail.com>2022-07-04 13:52:59 -0700
committerAndrey Kislyuk <kislyuk@gmail.com>2022-07-04 13:52:59 -0700
commit0d0f5cf45cdd8470e1a9e28824de35dee95ea467 (patch)
treeb1f38aa94eefb6bedafdcccb31940d684211f091
parent7426073efd5cf3db8988390a07ecbd98125c13f1 (diff)
v3.0.1v3.0.1
-rw-r--r--Changes.rst7
-rwxr-xr-xsetup.py2
2 files changed, 8 insertions, 1 deletions
diff --git a/Changes.rst b/Changes.rst
index 0679c28..d0795fa 100644
--- a/Changes.rst
+++ b/Changes.rst
@@ -1,3 +1,10 @@
+Changes for v3.0.1 (2022-07-04)
+===============================
+
+- yq now uses the YAML 1.2 grammar when parsing and rendering YAML
+ documents. This means bare literals like “on”, “no”, and “12:34:56”
+ are interpreted as strings. (Fix interrupted release)
+
Changes for v3.0.0 (2022-07-04)
===============================
diff --git a/setup.py b/setup.py
index b4e63f1..7fe9d30 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
setup(
name="yq",
- version="3.0.0",
+ version="3.0.1",
url="https://github.com/kislyuk/yq",
license="Apache Software License",
author="Andrey Kislyuk",