v7.1.6
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.1.6")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 = "4aff49ff17bb91203e6ec63258b24f20b2843bc3f8dfb69045ff5df96a01b432",
strip_prefix = "rules_scala-7.1.6",
url = "https://github.com/bazelbuild/rules_scala/releases/download/v7.1.6/rules_scala-v7.1.6.tar.gz",
)See https://github.com/bazelbuild/rules_scala#getting-started for full setup instructions.
What's Changed
- Make java library earlier on classpath by @vinnybod in #1797
- Bump dependency versions by @mbland in #1798
- Set string_setting scope to fix last_green builds by @mbland in #1799
- Bump MODULE.bazel version to 7.1.6 by @mbland in #1800
Full Changelog: v7.1.5...v7.1.6