diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0650935..119917f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +1.20.0 (2019-12-26) +------------------- + +- Add --no-warnings option to suppress warning messages +- Use 'syntax' as rule name upon syntax errors + 1.19.0 (2019-11-19) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index 9d79116..676c80f 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -22,7 +22,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.19.0' +APP_VERSION = '1.20.0' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'