diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c099fc2..bf71899 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +1.13.0 (2018-11-14) +------------------- + +- Use `isinstance(x, y)` instead of `type(x) == y` +- Add a new `-f colored` option +- Update documentation about colored output when run from CLI + 1.12.1 (2018-10-17) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index a61ec8a..ba6780a 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -22,7 +22,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.12.1' +APP_VERSION = '1.13.0' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'