Skip to content

0.1.8

Choose a tag to compare

@github-actions github-actions released this 21 Nov 11:05
· 35 commits to main since this release

0.1.8

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.8/rules_coco_0.1.8.tar.gz",
        "https://dl.cocotec.io/rules_coco/rules_coco_0.1.8.tar.gz",
    ],
    integrity = "sha256-YDZ5nYkwaqewVDlDT5Lt8T4icwBYxrEQMmxG+K7S8Rc=",
)

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-YDZ5nYkwaqewVDlDT5Lt8T4icwBYxrEQMmxG+K7S8Rc=",
    urls = [
        "https://github.com/cocotec/rules_coco/releases/download/0.1.8/rules_coco_0.1.8.tar.gz",
        "https://dl.cocotec.io/rules_coco/rules_coco_0.1.8.tar.gz",
    ],
)

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

Full Changelog: 0.1.7...0.1.8