bazelbuild / rules_cc

C++ Rules for Bazel
https://bazel.build
Apache License 2.0
190 stars 94 forks source link

Update dependency rules_shell to v0.3.0 #266

Open renovate-bot opened 2 weeks ago

renovate-bot commented 2 weeks ago

This PR contains the following updates:

Package Type Update Change
rules_shell bazel_dep minor 0.2.0 -> 0.3.0
rules_shell http_archive minor v0.2.0 -> v0.3.0

Release Notes

bazelbuild/rules_shell (rules_shell) ### [`v0.3.0`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/v0.3.0) [Compare Source](https://redirect.github.com/bazelbuild/rules_shell/compare/v0.2.0...v0.3.0) #### Using Bzlmod with Bazel 6 or greater 1. (Bazel 6 only) Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "rules_shell", version = "0.3.0") ``` #### Using WORKSPACE Paste this snippet into your `WORKSPACE.bazel` file: ```starlark load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_shell", sha256 = "d8cd4a3a91fc1dc68d4c7d6b655f09def109f7186437e3f50a9b60ab436a0c53", strip_prefix = "rules_shell-0.3.0", url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.3.0/rules_shell-v0.3.0.tar.gz", ) load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains") rules_shell_dependencies() rules_shell_toolchains() ``` #### What's Changed - Mark automated releases as non-prerelease by [@​alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/bazelbuild/rules_shell/pull/14](https://redirect.github.com/bazelbuild/rules_shell/pull/14) - Copy over runfiles library from Bazel by [@​fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_shell/pull/13](https://redirect.github.com/bazelbuild/rules_shell/pull/13) - Update Bazel version to fix release tests by [@​fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/rules_shell/pull/15](https://redirect.github.com/bazelbuild/rules_shell/pull/15) #### New Contributors - [@​alexeagle](https://redirect.github.com/alexeagle) made their first contribution in [https://github.com/bazelbuild/rules_shell/pull/14](https://redirect.github.com/bazelbuild/rules_shell/pull/14) **Full Changelog**: https://github.com/bazelbuild/rules_shell/compare/v0.2.0...v0.3.0

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

â™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.



This PR was generated by Mend Renovate. View the repository job log.