From b05e028c5881819161d11cb543fd96a30c06cceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Mon, 22 May 2023 18:01:58 +0200 Subject: [PATCH] yamllint version 1.32.0 --- CHANGELOG.rst | 6 ++++++ yamllint/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b1f7649..3ea023d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +1.32.0 (2023-05-22) +------------------- + +- Look for configuration file in parent directories +- Rule ``anchors``: add new option ``forbid-unused-anchors`` + 1.31.0 (2023-04-21) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index 3d3b516..e4feea7 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -21,7 +21,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.31.0' +APP_VERSION = '1.32.0' APP_DESCRIPTION = __doc__ __author__ = 'Adrien Vergé'