diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4eeb8ec..0aac5f5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Changelog ========= +1.30.0 (2023-03-22) +------------------- + +- Rule ``anchors``: add new rule to detect undeclared or duplicated anchors +- Python API: prevent using ``is_file_ignored()`` with null ``filepath`` +- Docs: fix misleading Python API example +- Docs: fix plain text code snippet example +- Docs: update pre-commit hook example + 1.29.0 (2023-01-10) ------------------- diff --git a/yamllint/__init__.py b/yamllint/__init__.py index 99c4812..e7c900d 100644 --- a/yamllint/__init__.py +++ b/yamllint/__init__.py @@ -21,7 +21,7 @@ indentation, etc.""" APP_NAME = 'yamllint' -APP_VERSION = '1.29.0' +APP_VERSION = '1.30.0' APP_DESCRIPTION = __doc__ __author__ = 'Adrien Vergé'