v0.8.1
Restore WORKSPACE.bazel file for Bazel 6 support
In order to accommodate users with Bazel version 6, we must retain the WORKSPACE.bazel file, even though it's no longer required to be present in Bazel 7.
Note that the Bazel Central Registry (BCR) CI workflow tests with both Bazel version 6 and 7 per the "bazel" matrix entries in the .bcr/presubmit.yml file.
Details
Using modules with Bazel 6 and later
- Enable support for modules in your .bazelrc file by adding the following line:
common --enable_bzlmod
- Add the following directive to your MODULE.bazel file:
bazel_dep(name = "rules_cue", version = "0.8.1")
Full Changelog: v0.8.0...v0.8.1