v0.22.0
Pre-release
Pre-release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_adobe_rules_gitops",
sha256 = "a89af7d2531582321b0885a0cef2abfa08c13f996c2883435fb626833a3eaede",
strip_prefix = "rules_gitops-0.22.0",
urls = ["https://github.com/adobe/rules_gitops/archive/refs/tags/v0.22.0.tar.gz"],
)
http_archive(
name = "io_bazel_rules_go",
sha256 = "099a9fb96a376ccbbb7d291ed4ecbdfd42f6bc822ab77ae6f1b5cb9e914e94fa",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.19.2")
load("@com_adobe_rules_gitops//gitops:deps.bzl", "rules_gitops_dependencies")
rules_gitops_dependencies()
load("@com_adobe_rules_gitops//gitops:repositories.bzl", "rules_gitops_repositories")
rules_gitops_repositories()
What's Changed
- Add support for incremental stamping by @randrei-adobe in #175
New Contributors
- @randrei-adobe made their first contribution in #175
Full Changelog: v0.21.0...v0.22.0