From a92743c8ca44bab56389c75504fcf25d33e2c11a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Sun, 5 Nov 2017 10:17:55 +0100 Subject: [PATCH] yamllint version 1.10.0 --- CHANGELOG.rst | 10 ++++++++++ yamllint/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 73de95f..bc1fec4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,16 @@ Changelog ========= +1.10.0 (2017-11-05) +------------------- + +- Fix colored output on Windows +- Check documentation compilation on continuous integration +- Add a new `empty-values` rule +- Make sure test files are included in dist bundle +- Tests: Use en_US.UTF-8 locale when C.UTF-8 not available +- Tests: Dynamically detect Python executable path + 1.9.0 (2017-10-16) ------------------ diff --git a/yamllint/__init__.py b/yamllint/__init__.py index 831da23..8ff52f9 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -22,7 +22,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.9.0' +APP_VERSION = '1.10.0' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'