Skip to content

v0.10.2

Compare
Choose a tag to compare
@github-actions github-actions released this 06 Feb 13:19
· 28 commits to main since this release
38b06de

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.10.2")

archive_override(
    module_name = "com_cognitedata_bazel_snapshots",
    sha256 = "c302757fd786c125af897172f191d3169c31bf1699ca140f242d47beb25004b3",
    urls = ["https://github.com/cognitedata/bazel-snapshots/releases/download/v0.10.2/snapshots-v0.10.2.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 = "c302757fd786c125af897172f191d3169c31bf1699ca140f242d47beb25004b3",
    url = "https://github.com/cognitedata/bazel-snapshots/releases/download/v0.10.2/snapshots-v0.10.2.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.10.1...v0.10.2

What's Changed

Full Changelog: v0.9.1...v0.10.2