From 9cce2940414e9560ae4c8518ddaee2ac1863a4d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Mon, 12 Sep 2022 14:37:48 +0200 Subject: [PATCH] yamllint version 1.28.0 --- CHANGELOG.rst | 13 +++++++++++++ yamllint/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b1c8045..dc05dd8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,19 @@ Changelog ========= +1.28.0 (2022-09-12) +------------------- + +- Better compress PNG image in documentation +- Remove ``__future__`` imports specific to Python 2 +- Remove inheritance from ``object`` specific to Python 2 +- Simplify GitHub Actions example in documentation +- Update ALE vim plugin link in documentation +- Update license to latest version of GPLv3 +- Pre-compile disable/enable rules regexes +- Rule ``quoted-strings``: add ``allow-quoted-quotes`` option +- Add option ``ignore-from-file`` in config + 1.27.1 (2022-07-08) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index 947ff03..daff8d5 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -21,7 +21,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.27.1' +APP_VERSION = '1.28.0' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'