Skip to content

v7.1.0

Choose a tag to compare

@github-actions github-actions released this 11 Aug 14:53
· 19 commits to master since this release
0aa4795

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.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 = "6a900a39bf643c5c9308c8200f9a61e27588dc54a67aa08fcfc798f25add4f7b",
    strip_prefix = "rules_scala-7.1.0",
    url = "https://github.com/bazelbuild/rules_scala/releases/download/v7.1.0/rules_scala-v7.1.0.tar.gz",
)

See https://github.com/bazelbuild/rules_scala#getting-started for full setup instructions.

Full Changelog: v7.0.0...v7.1.0