Skip to content

v1.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 12 Dec 12:40
· 2 commits to master since this release
a6e6438

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "masorange_rules_helm", version = "1.4.0")

Using WORKSPACE:

Paste this into your WORKSPACE file:

http_archive(
    name = "masorange_rules_helm",
    sha256 = "81ecdec4d52d62c5640ed338f477b3d7a9b7f2abd62f6089d3f689105b922e4c",
    strip_prefix = "masorange_rules_helm-1.4.0",
    urls = [
        "https://github.com/masmovil/masorange_rules_helm/releases/download/v1.4.0/masorange_rules_helm-v1.4.0.tar.gz",
    ],
)

load("@masorange_rules_helm//:repositories.bzl", "masorange_rules_helm_repositories")

masorange_rules_helm_repositories()

load("@masorange_rules_helm//:config.bzl", "masorange_rules_helm_configure")

masorange_rules_helm_configure()

What's Changed

Full Changelog: v1.3.1...v1.4.0