From b9e1fd18c1acbaa4b0028196f8925ce4e91970d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Tue, 10 Jan 2023 18:57:21 +0100 Subject: [PATCH] yamllint version 1.29.0 --- CHANGELOG.rst | 13 +++++++++++++ yamllint/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dc05dd83..4eeb8ec0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,19 @@ Changelog ========= +1.29.0 (2023-01-10) +------------------- + +- Add support for Python 3.11, drop support for Python 3.6 +- Rule ``float-values``: fix bug on strings containing fordidden values +- Stop releasing universal wheels +- Use proper Python 3 I/O type for file reading +- Rule ``indentation``: fix ``indent-sequences`` in nested collections +- Docs: clarify ``disable-line`` and parser errors, give a workaround +- Refactors to apply some pyupgrade suggestions +- Allow using a list of strings in ``ignore`` configuration +- Add ``--list-files`` command line option + 1.28.0 (2022-09-12) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index 3fdb060b..99c48126 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -21,7 +21,7 @@ APP_NAME = 'yamllint' -APP_VERSION = '1.28.0' +APP_VERSION = '1.29.0' APP_DESCRIPTION = __doc__ __author__ = 'Adrien Vergé'