Skip to content

Commit

Permalink
chore: update to bazel 5 (bazel-contrib#3269)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle authored Jan 20, 2022
1 parent 71e9904 commit 44ca586
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
bazel: 4.2.2
bazel: 5.0.0
# Note, this will tell the user to do the wrong thing (manually run buildifer)
# See https://github.com/bazelbuild/continuous-integration/issues/1161
buildifier:
Expand Down
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.2
5.0.0
4 changes: 2 additions & 2 deletions index.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,14 @@ def yarn_install(**kwargs):
# against.
# This version should be updated together with the version of the Bazel
# in .bazelversion. This is asserted in //internal:bazel_version_test.
BAZEL_VERSION = "4.2.2"
BAZEL_VERSION = "5.0.0"

# Versions of Bazel which users should be able to use.
# Ensures we don't break backwards-compatibility,
# accidentally forcing users to update their LTS-supported bazel.
# These are the versions used when testing nested workspaces with
# bazel_integration_test.
SUPPORTED_BAZEL_VERSIONS = [BAZEL_VERSION]
SUPPORTED_BAZEL_VERSIONS = ["4.2.2", BAZEL_VERSION]

def check_build_bazel_rules_nodejs_version(minimum_version_string):
"""
Expand Down

0 comments on commit 44ca586

Please sign in to comment.