diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4e97957..c9cf649 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +1.24.0 (2020-07-15) +------------------- + +- Specify config with environment variable ``YAMLLINT_CONFIG_FILE`` +- Fix bug with CRLF in ``new-lines`` and ``require-starting-space`` +- Do not run linter on directories whose names look like YAML files +- Add ``locale`` config option and make ``key-ordering`` locale-aware + 1.23.0 (2020-04-17) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index b78fe9c..aac9ce4 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -22,7 +22,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.23.0' +APP_VERSION = '1.24.0' APP_DESCRIPTION = __doc__ __author__ = u'Adrien Vergé'