From 16e0f9d7b2ba9d0fc8c27d27611d4473b7c4dd54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Tue, 29 Sep 2020 08:52:34 +0200 Subject: [PATCH] yamllint version 1.25.0 --- CHANGELOG.rst | 17 +++++++++++++++++ yamllint/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 48eb41c..7dfb76a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,23 @@ Changelog ========= +1.25.0 (2020-09-29) +------------------- + +- Run tests on Travis both with and without UTF-8 locales +- Improve documentationon with default values to rules with options +- Improve documentation with a Python API usage example +- Fix documentation on ``commas`` examples +- Packaging: move setuptools' configuration from ``setup.py`` to ``setup.cfg`` +- Packaging: add extra info in PyPI metadata +- Improve documentation on ``yaml-files`` +- Fix ``octal-values`` to prevent detection of ``8`` and ``9`` as octal values +- Fix ``quoted-strings`` Fix detecting strings with hashtag as requiring quotes +- Add ``forbid`` configuration to the ``braces`` and ``brackets`` rules +- Fix runtime dependencies missing ``setuptools`` +- Add a new output format for GitHub Annotations (``--format github``) +- Fix DOS lines messing with rule IDs in directives + 1.24.2 (2020-07-16) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index 5c35f20..bd04714 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -22,7 +22,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.24.2' +APP_VERSION = '1.25.0' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'