diff --git a/cpp_linter_hooks/util.py b/cpp_linter_hooks/util.py index 13a7efc..9a847ad 100644 --- a/cpp_linter_hooks/util.py +++ b/cpp_linter_hooks/util.py @@ -103,6 +103,7 @@ def get_version_from_dependency(tool: str) -> Optional[str]: "20.1.5", "20.1.6", "20.1.7", + "20.1.8", ] CLANG_TIDY_VERSIONS = [ diff --git a/pyproject.toml b/pyproject.toml index 816601f..e6727b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ tracker = "https://github.com/cpp-linter/cpp-linter-hooks/issues" [project.optional-dependencies] # only clang tools can added to this section to make hooks work tools = [ - "clang-format==20.1.7", + "clang-format==20.1.8", "clang-tidy==20.1.0", ]