diff --git a/MODULE.bazel b/MODULE.bazel index 7ae44e3..45ce48b 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "rules_bun", - version = "1.0.0", + version = "1.0.1", ) # Core ruleset dependencies. diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 57ec9c5..91ddcef 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -193,7 +193,7 @@ "//bun:extensions.bzl%bun": { "general": { "bzlTransitiveDigest": "314UOH4dQIGBHGpxCwA7yzI++E2J3bjIc20m5MZhM7U=", - "usagesDigest": "F7vNx1FkssnJKNa2AZDuwHKkH7+IjJNX42lRAaJhhKE=", + "usagesDigest": "Pk8TCTd2EBKQ8R+VSF0M7sU9apLb/5tBy/dP2pjs3AU=", "recordedInputs": [ "REPO_MAPPING:,bazel_tools bazel_tools" ], @@ -284,7 +284,7 @@ "//bun:extensions.bzl%bun_install": { "general": { "bzlTransitiveDigest": "314UOH4dQIGBHGpxCwA7yzI++E2J3bjIc20m5MZhM7U=", - "usagesDigest": "5mKuORKUFhw+/OMHQF0I8Ngq0GV2eqMaOTDmyqaQa8M=", + "usagesDigest": "2qW6PUxkK7CgK8mcsgVvlIbuJS/cBBkw5mylpKlqftE=", "recordedInputs": [ "REPO_MAPPING:,bazel_tools bazel_tools" ], diff --git a/README.md b/README.md index ef259e7..83a387f 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Release announcements should provide a copy-pasteable module snippet in the standard ruleset form: ```starlark -bazel_dep(name = "rules_bun", version = "1.0.0") +bazel_dep(name = "rules_bun", version = "1.0.1") ``` Then add the Bun repositories and register the toolchains in `MODULE.bazel`: diff --git a/VERSION b/VERSION index 427945c..c466d6c 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ -1.0.0 +1.0.1 stable 0 diff --git a/tests/bundle_test/BUILD.bazel b/tests/bundle_test/BUILD.bazel index 6e90390..7f77fde 100644 --- a/tests/bundle_test/BUILD.bazel +++ b/tests/bundle_test/BUILD.bazel @@ -197,6 +197,7 @@ sh_test( name = "bundle_sourcemap_shape_test", size = "small", srcs = ["verify_sourcemap_shape.sh"], + tags = ["exclusive"], data = [ "BUILD.bazel", "//:repo_runtime_files", @@ -237,6 +238,7 @@ sh_test( name = "bun_build_compile_flag_shape_test", size = "small", srcs = ["verify_flag_aquery.sh"], + tags = ["exclusive"], data = [ "BUILD.bazel", "cli.ts", diff --git a/tests/install_test/BUILD.bazel b/tests/install_test/BUILD.bazel index 1b62639..a96f476 100644 --- a/tests/install_test/BUILD.bazel +++ b/tests/install_test/BUILD.bazel @@ -146,7 +146,9 @@ sh_test( sh_test( name = "bun_install_workspace_parity_test", + size = "large", srcs = ["workspace_parity.sh"], + tags = ["exclusive"], args = select({ ":linux_x86_64": ["$(location @bun_linux_x64//:bun)"], ":linux_aarch64": ["$(location @bun_linux_aarch64//:bun)"], @@ -183,6 +185,7 @@ sh_test( name = "bun_install_repeatability_test", size = "small", srcs = ["repeatability.sh"], + tags = ["exclusive"], args = select({ ":linux_x86_64": ["$(location @bun_linux_x64//:bun)"], ":linux_aarch64": ["$(location @bun_linux_aarch64//:bun)"], @@ -211,6 +214,7 @@ sh_test( name = "bun_install_lifecycle_scripts_test", size = "small", srcs = ["lifecycle_scripts.sh"], + tags = ["exclusive"], args = select({ ":linux_x86_64": ["$(location @bun_linux_x64//:bun)"], ":linux_aarch64": ["$(location @bun_linux_aarch64//:bun)"], diff --git a/tests/npm_compat_test/BUILD.bazel b/tests/npm_compat_test/BUILD.bazel index ddc7154..bcf5797 100644 --- a/tests/npm_compat_test/BUILD.bazel +++ b/tests/npm_compat_test/BUILD.bazel @@ -44,6 +44,7 @@ sh_test( name = "npm_translate_lock_workspace_test", size = "small", srcs = ["npm_translate_lock_workspace_test.sh"], + tags = ["exclusive"], args = select({ ":linux_x86_64": ["$(location @bun_linux_x64//:bun)"], ":linux_aarch64": ["$(location @bun_linux_aarch64//:bun)"],