Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/def.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ TOOLS_NOGO = [

# Current version or next version to be tagged. Gazelle and other tools may
# check this to determine compatibility.
RULES_GO_VERSION = "0.29.0"
RULES_GO_VERSION = "0.30.0"

declare_toolchains = _declare_toolchains
go_context = _go_context
Expand Down
11 changes: 7 additions & 4 deletions go/tools/bzltestutil/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,11 @@ go_tool_library(
go_test(
name = "bzltestutil_test",
srcs = [
"init.go",
Comment thread
JamyDev marked this conversation as resolved.
"test2json.go",
"wrap.go",
"wrap_test.go",
"xml.go",
"xml_test.go",
],
data = glob(["testdata/**"]),
embed = [":bzltestutil"],
)

filegroup(
Expand All @@ -34,3 +31,9 @@ filegroup(
),
visibility = ["//visibility:public"],
)

alias(
name = "go_default_library",
actual = ":bzltestutil",
visibility = ["//visibility:public"],
)