From 16b939958d3cbfa168957a03dc82e50f9cd566e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Mon, 14 Jan 2019 09:47:07 +0100 Subject: [PATCH] yamllint version 1.14.0 --- CHANGELOG.rst | 9 +++++++++ yamllint/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6008deb..5b7de4c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Changelog ========= +1.14.0 (2019-01-14) +------------------- + +- Fix documentation code snippets +- Drop Python 2.6 and 3.3 support, add Python 3.7 support +- Update documentation and tests for ``line-length`` + Unicode + Python 2 +- Allow rule configurations to lack options +- Add a new ``ignore-shebangs`` option for the ``comments`` rule + 1.13.0 (2018-11-14) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index ba6780a..3c200a7 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -22,7 +22,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.13.0' +APP_VERSION = '1.14.0' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'