v0.2.1
Pre-release
Pre-release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "contrib_rules_oci",
sha256 = "85197657c25b5769664c6413988b415a14d35b6dab1754b00d8ae60019936777",
strip_prefix = "rules_oci-0.2.1",
url = "https://github.com/bazel-contrib/rules_oci/archive/v0.2.1.tar.gz",
)
# Fetches the rules_oci dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
load("@contrib_rules_oci//oci:repositories.bzl", "rules_oci_dependencies")
rules_oci_dependencies()
What's Changed
- Update README.md by @alexeagle in #44
- chore(docs): fix bad html tag appearing in markdown by @alexeagle in #43
- feat: implement cosign_attach by @thesayyn in #45
- Fix typo in example of
oci_image
by @tetsuok in #50 - Cache results per OS by @tetsuok in #51
- feat: allow .tar.gz files as layers by @thesayyn in #56
- refactor: cleanup toolchains by @thesayyn in #57
Full Changelog: v0.2.0...v0.2.1