v0.3.6
Pre-release
Pre-release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_oci",
sha256 = "e308cf772758532f533edacd55eb83a2608a11f124c1599bb0b004727316fda1",
strip_prefix = "rules_oci-0.3.6",
url = "https://github.com/bazel-contrib/rules_oci/releases/download/v0.3.6/rules_oci-v0.3.6.tar.gz",
)
load("@rules_oci//oci:dependencies.bzl", "rules_oci_dependencies")
rules_oci_dependencies()
load("@rules_oci//oci:repositories.bzl", "LATEST_CRANE_VERSION", "LATEST_ZOT_VERSION", "oci_register_toolchains")
oci_register_toolchains(
name = "oci",
crane_version = LATEST_CRANE_VERSION,
zot_version = LATEST_ZOT_VERSION,
)
# Optional, for oci_tarball rule
load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies")
rules_pkg_dependencies()
What's Changed
- chore: fixup docs links by @gregmagolan in #96
- fix: structure test platform keys include .exe suffix on windows by @alexeagle in #98
New Contributors
- @gregmagolan made their first contribution in #96
Full Changelog: v0.3.5...v0.3.6