From 0fff4e29e42d170cd0d1ad17736acdc53df97fc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Fri, 29 Jan 2021 18:10:35 +0100 Subject: [PATCH] yamllint version 1.26.0 --- CHANGELOG.rst | 10 ++++++++++ yamllint/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 39fce9c..4fcc4ea 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,16 @@ Changelog ========= +1.26.0 (2021-01-29) +------------------- + +- End support for Python 2 and Python 3.4, add support for Python 3.9 +- Add ``forbid: non-empty`` option to ``braces`` and ``brackets`` rules +- Fix ``quoted-strings`` for explicit octal recognition +- Add documentation for integration with Arcanist +- Fix typos in changelog and README +- Stop using deprecated ``python setup.py test`` in tests + 1.25.0 (2020-09-29) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index bd04714..3c2af07 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -22,7 +22,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.25.0' +APP_VERSION = '1.26.0' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'