Skip to content

v0.12.0

Compare
Choose a tag to compare
@github-actions github-actions released this 13 Feb 10:09
· 22 commits to main since this release
07db0e1

Using Bzlmod

NOTE: bzlmod support is still beta. APIs subject to change.

Add to your MODULE.bazel file:

bazel_dep(name = "com_cognitedata_bazel_snapshots", version = "0.12.0")

archive_override(
    module_name = "com_cognitedata_bazel_snapshots",
    urls = ["https://github.com/cognitedata/bazel-snapshots/releases/download/v0.12.0/snapshots-v0.12.0.tar"],
)

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "com_cognitedata_bazel_snapshots",
    sha256 = "3e8215886de9bb14692019a9dd5c9cc431155c5693b111077235bcb89a5edf2a",
    url = "https://github.com/cognitedata/bazel-snapshots/releases/download/v0.12.0/snapshots-v0.12.0.tar",
)

load("@com_cognitedata_bazel_snapshots//snapshots:dependencies.bzl", "snapshots_dependencies")

snapshots_dependencies()

load("@com_cognitedata_bazel_snapshots//snapshots:repositories.bzl", "snapshots_register_toolchains")

snapshots_register_toolchains()

What's Changed

Full Changelog: v0.11.1...v0.12.0