diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7f045979846..3537831261a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -130,7 +130,7 @@ To develop Firebase software, **install**: To install [clang-format] and [mint] using [Homebrew]: ```console - brew install clang-format@14 + brew install clang-format@15 brew install mint ``` diff --git a/README.md b/README.md index d1c41013f38..920f08addfd 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ GitHub Actions will verify that any code changes are done in a style compliant way. Install `clang-format` and `mint`: ```console -brew install clang-format@14 +brew install clang-format@15 brew install mint ``` diff --git a/scripts/setup_check.sh b/scripts/setup_check.sh index 6072a8d92aa..6404eeca5bf 100755 --- a/scripts/setup_check.sh +++ b/scripts/setup_check.sh @@ -35,7 +35,7 @@ fi # install clang-format brew update -brew install clang-format@14 +brew install clang-format@15 # mint installs tools from Mintfile on demand. brew install mint diff --git a/scripts/style.sh b/scripts/style.sh index 140ac75452d..4c068d73c6f 100755 --- a/scripts/style.sh +++ b/scripts/style.sh @@ -42,7 +42,7 @@ version="${version/ (*)/}" version="${version/.*/}" case "$version" in - 14) + 15) ;; google3-trunk) echo "Please use a publicly released clang-format; a recent LLVM release" @@ -51,7 +51,7 @@ case "$version" in exit 1 ;; *) - echo "Please upgrade to clang-format version 14." + echo "Please upgrade to clang-format version 15." echo "If it's installed via homebrew you can run:" echo "brew upgrade clang-format" exit 1