v7.2.2
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.2")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 = "c81d0127caf7e573606411a2ba425a6277a06052f7c279dabc974a170b829fd9",
strip_prefix = "rules_scala-7.2.2",
url = "https://github.com/bazelbuild/rules_scala/releases/download/v7.2.2/rules_scala-v7.2.2.tar.gz",
)See https://github.com/bazelbuild/rules_scala#getting-started for full setup instructions.
What's Changed
- fix dropping reference.conf files in nosrc jars by @contagnas in #1805
- Upgrade Scala 2.13 LTS to 2.13.18 by @bartoszkosiorek in #1807
- Upgrade Scala 2.12 LTS to 2.12.21 by @bartoszkosiorek in #1808
New Contributors
- @contagnas made their first contribution in #1805
Full Changelog: v7.2.1...v7.2.2