v7.2.1
Using Bzlmod
Paste this snippet into your MODULE.bazel file:
# Set `repo_name = "io_bazel_rules_scala"` if you still need it.
bazel_dep(name = "rules_scala", version = "7.2.1")Using WORKSPACE
Paste this snippet into your WORKSPACE file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_scala", # Can be "io_bazel_rules_scala" if you still need it.
sha256 = "0d063e92184ab8ffa3c9b6f850bd9a790cd6141b5a688721843910ecdc019316",
strip_prefix = "rules_scala-7.2.1",
url = "https://github.com/bazelbuild/rules_scala/releases/download/v7.2.1/rules_scala-v7.2.1.tar.gz",
)See https://github.com/bazelbuild/rules_scala#getting-started for full setup instructions.
What's Changed
Full Changelog: v7.2.0...v7.2.1