Skip to content

0.1.2

Choose a tag to compare

@github-actions github-actions released this 14 Nov 21:19
· 52 commits to main since this release
cc4c134

0.1.2

Setup

Bzlmod (add to your MODULE.bazel):

bazel_dep(name = "rules_coco")
archive_override(
    module_name = "rules_coco",
    urls = ["https://github.com/cocotec/rules_coco/releases/download/0.1.2/rules_coco_0.1.2.tar.gz"],
    integrity = "sha256-WnKQzcouYXuh4Jx/VEpiqOLdFGHLc++Vj3SrXHXRcl0=",
)

coco = use_extension("@rules_coco//coco:extensions.bzl", "coco")
coco.toolchain(versions = ["stable"], cc = True)

WORKSPACE (deprecated):

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

http_archive(
    name = "rules_coco",
    integrity = "sha256-WnKQzcouYXuh4Jx/VEpiqOLdFGHLc++Vj3SrXHXRcl0=",
    urls = ["https://github.com/cocotec/rules_coco/releases/download/0.1.2/rules_coco_0.1.2.tar.gz"],
)

load("@rules_coco//coco:repositories.bzl", "coco_repositories")
coco_repositories(version = "1.5.1", cc = True)

What's Changed

Full Changelog: 0.1.1...0.1.2