From dc4a9f4fff0c52944f1b285ab2088280276eb72d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Wed, 17 Oct 2018 10:22:32 +0200 Subject: [PATCH] yamllint version 1.12.1 --- CHANGELOG.rst | 6 ++++++ yamllint/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d04a2a6..c099fc2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +1.12.1 (2018-10-17) +------------------- + +- Fix the `quoted-strings` rule, broken implementation +- Fix missing documentation for the `quoted-strings` rule + 1.12.0 (2018-10-04) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index a9b524f..a61ec8a 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -22,7 +22,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.12.0' +APP_VERSION = '1.12.1' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'