From f6a24552d9048484b22c1b5cd51370f8dba8dfd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Fri, 7 Jun 2019 10:04:55 +0200 Subject: [PATCH] yamllint version 1.16.0 --- CHANGELOG.rst | 8 ++++++++ yamllint/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index de0e50c..105fccd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +1.16.0 (2019-06-07) +------------------- + +- Add FreeBSD installation instructions +- Fix the ``line`` rule to correctly handle DOS new lines +- Add the ``allowed-values`` option to the ``truthy`` rule +- Allow configuration options to be a list of enums + 1.15.0 (2019-02-11) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index 91c19eb..932054e 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -22,7 +22,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.15.0' +APP_VERSION = '1.16.0' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'