Skip to content

0.6.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 04 Apr 20:02
· 3 commits to master since this release
62c7a43

Setup

To use the Jsonnet rules, add the following to your MODULE.bazel file:

bazel_dep(name = "rules_jsonnet", version = "0.6.0")

If you are using an older version of Bazel that does not support Bzlmod,
add the following to your WORKSPACE file to add the external
repositories for Jsonnet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_jsonnet",
    sha256 = "e09b3c086ee9a38ee0cedbff96719700bd0121d7884d0193664aff5ea320128d",
    strip_prefix = "rules_jsonnet-0.6.0",
    urls = ["https://github.com/bazelbuild/rules_jsonnet/releases/download/0.6.0/rules_jsonnet-0.6.0.tar.gz",
)

load("@io_bazel_rules_jsonnet//jsonnet:jsonnet.bzl", "jsonnet_repositories")

jsonnet_repositories()

load("@google_jsonnet_go//bazel:repositories.bzl", "jsonnet_go_repositories")

jsonnet_go_repositories()

load("@google_jsonnet_go//bazel:deps.bzl", "jsonnet_go_dependencies")

jsonnet_go_dependencies()

What's Changed

New Contributors

Full Changelog: 0.5.0...0.6.0