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é'