chore(release): v0.0.7
Some checks failed
Copilot Setup Steps / copilot-setup-steps (push) Failing after 34s

This commit is contained in:
Eric
2026-03-04 14:38:41 +01:00
parent 9e82a7baea
commit 99b31ab297
3 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
module(
name = "rules_bun",
version = "0.0.6",
version = "0.0.7",
)
bazel_dep(name = "platforms", version = "1.0.0")

View File

@@ -16,24 +16,24 @@ These steps show how to consume a tagged release of `rules_bun` in a separate Ba
In your project's `MODULE.bazel`, add:
```starlark
bazel_dep(name = "rules_bun", version = "0.0.6")
bazel_dep(name = "rules_bun", version = "0.0.7")
archive_override(
module_name = "rules_bun",
urls = ["https://github.com/Eriyc/rules_bun/archiv0.0.5.tar.gz"],
strip_prefix = "rules_bun-v0.0.6",
strip_prefix = "rules_bun-v0.0.7",
)
```
For channel/pre-release tags (for example `v0.0.6-rc.1`), use the matching folder prefix:
For channel/pre-release tags (for example `v0.0.7-rc.1`), use the matching folder prefix:
```starlark
bazel_dep(name = "rules_bun", version = "0.0.6-rc.1")
bazel_dep(name = "rules_bun", version = "0.0.7-rc.1")
archive_override(
module_name = "rules_bun",
urls = ["https://github.com/Eriyc/rules_bun/archiv0.0.5-rc.1.tar.gz"],
strip_prefix = "rules_bun-v0.0.6-rc.1",
strip_prefix = "rules_bun-v0.0.7-rc.1",
)
```

View File

@@ -1,3 +1,3 @@
0.0.6
0.0.7
stable
0