v7.1.4
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.4")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 = "43a6725dc80000eba0b4583b42e18732cf4ad2ffb71d5ab4addcaf8c6eacdaf6",
strip_prefix = "rules_scala-7.1.4",
url = "https://github.com/bazelbuild/rules_scala/releases/download/v7.1.4/rules_scala-v7.1.4.tar.gz",
)See https://github.com/bazelbuild/rules_scala#getting-started for full setup instructions.
What's Changed
- Bump to rules_go 0.58.2, update Go in
WORKSPACEby @mbland in #1782 - Replace
.bazelversionfiles with symlinks by @mbland in #1783 - Improve test efficiency, reduce lock file size by @mbland in #1784
- Make extensions reproducible, add lock files by @mbland in #1785
- Bump to Bazel 7.7.0 by @mbland in #1787
Full Changelog: v7.1.3...v7.1.4