From 98f2281f56be5503f3851e74556e1122fc18b2a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Fri, 21 Apr 2023 14:23:43 +0200 Subject: [PATCH] yamllint version 1.31.0 --- CHANGELOG.rst | 7 +++++++ yamllint/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0aac5f5e..b1f76495 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +1.31.0 (2023-04-21) +------------------- + +- Build: migrate from ``setup.py`` to ``pyproject.toml`` +- Docs: update some outdated URLs +- Rule ``colons``: prevent error when space before is mandatory + 1.30.0 (2023-03-22) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index e7c900de..3d3b5169 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -21,7 +21,7 @@ APP_NAME = 'yamllint' -APP_VERSION = '1.30.0' +APP_VERSION = '1.31.0' APP_DESCRIPTION = __doc__ __author__ = 'Adrien Vergé'