diff --git a/MODULE.bazel b/MODULE.bazel index 2a4a581..e195791 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "rules_bun", - version = "0.1.0", + version = "0.2.0", ) bazel_dep(name = "platforms", version = "1.0.0") diff --git a/README.md b/README.md index 793c3f5..0e37046 100644 --- a/README.md +++ b/README.md @@ -17,24 +17,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.1.0") +bazel_dep(name = "rules_bun", version = "0.2.0") archive_override( module_name = "rules_bun", urls = ["https://github.com/Eriyc/rules_bun/archiv0.0.5.tar.gz"], - strip_prefix = "rules_bun-v0.1.0", + strip_prefix = "rules_bun-v0.2.0", ) ``` -For channel/pre-release tags (for example `v0.1.0-rc.1`), use the matching folder prefix: +For channel/pre-release tags (for example `v0.2.0-rc.1`), use the matching folder prefix: ```starlark -bazel_dep(name = "rules_bun", version = "0.1.0-rc.1") +bazel_dep(name = "rules_bun", version = "0.2.0-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.1.0-rc.1", + strip_prefix = "rules_bun-v0.2.0-rc.1", ) ``` diff --git a/VERSION b/VERSION index 828fa84..24a2794 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ -0.1.0 +0.2.0 stable 0