diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4e56ab6..87e1a6e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +1.22.0 (2020-04-13) +------------------- + +- Add ``check-keys`` option to the ``truthy`` rule +- Fix ``quoted-strings`` rule not working on sequences items +- Sunset Python 2 + 1.21.0 (2020-03-24) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index 5b04ef6..18184f2 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -22,7 +22,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.21.0' +APP_VERSION = '1.22.0' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'