v7.2.0
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.0")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 = "8518d0efc2cc7f420b4f2948f79f9e586b33abee5d5661ba79749baa2af97e2e",
strip_prefix = "rules_scala-7.2.0",
url = "https://github.com/bazelbuild/rules_scala/releases/download/v7.2.0/rules_scala-v7.2.0.tar.gz",
)See https://github.com/bazelbuild/rules_scala#getting-started for full setup instructions.
What's Changed
- fix: push users to new enough rules_proto that works with toolchain by @alexeagle in #1801
- Add support for Scala 3.8 by @WojciechMazur in #1794
- Support Protobuf 33.4 w/ prebuilt protoc toolchain by @mbland in #1803
Full Changelog: v7.1.6...v7.2.0