Skip to content

Commit

Permalink
chore: bump to Bazel 7.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed Aug 20, 2024
1 parent abbbd54 commit 0672ad0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.2
7.2.0
11 changes: 10 additions & 1 deletion lib/private/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,16 @@ bzl_library(
srcs = [
"platform_utils.bzl",
"@local_config_platform//:constraints.bzl", # keep
],
"@platforms//host:constraints.bzl", # keep
] + (select({
"@aspect_bazel_lib//lib:bzlmod": [
"@@platforms~host_platform~host_platform//:constraints.bzl", # keep
],
"//conditions:default": [
"@host_platform//:constraints.bzl", # keep
"@internal_platforms_do_not_use//host:constraints.bzl", # keep
],
}) if is_bazel_7_or_greater() else []),
visibility = ["//lib:__subpackages__"],
deps = [], # keep
)
Expand Down

0 comments on commit 0672ad0

Please sign in to comment.