From 92d0261b16dfe60d5d82cbecfcfab834e52ae228 Mon Sep 17 00:00:00 2001 From: kon72 Date: Mon, 19 Feb 2024 16:23:25 +0900 Subject: [PATCH] Release 0.1.0 --- README.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d7b88d..c6ab700 100644 --- a/README.md +++ b/README.md @@ -31,13 +31,7 @@ See [examples](examples) for more details. Add the following to your `MODULE.bazel` file: ```Starlark -bazel_dep(name = "rules_node_binding") -archive_override( - module_name = "rules_node_binding", - integrity = "sha256-yrGTzp9iRs9ZnXdsW3mogn5VAlJRCcREBjeOmhsfoVM=", - strip_prefix = "rules_node_binding-4bd65b67ef73eb5776a0909953323adcfff2ce3d", - urls = ["https://github.com/kon72/rules_node_binding/archive/4bd65b67ef73eb5776a0909953323adcfff2ce3d.tar.gz"], -) +bazel_dep(name = "rules_node_binding", version = "0.1.0") ``` ### If your project is using WORKSPACE system @@ -49,9 +43,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_node_binding", - integrity = "sha256-yrGTzp9iRs9ZnXdsW3mogn5VAlJRCcREBjeOmhsfoVM=", - strip_prefix = "rules_node_binding-4bd65b67ef73eb5776a0909953323adcfff2ce3d", - urls = ["https://github.com/kon72/rules_node_binding/archive/4bd65b67ef73eb5776a0909953323adcfff2ce3d.tar.gz"], + integrity = "sha256-wvO6PRCH16nAdXWCSmRh+gia562UEUHeT+uWaJoC7nA=", + strip_prefix = "rules_node_binding-e49d38777bc1f7c26404cc0fef9459b5d1154cd8", + urls = ["https://github.com/kon72/rules_node_binding/archive/e49d38777bc1f7c26404cc0fef9459b5d1154cd8.tar.gz"], ) load("@rules_node_binding//node_binding:repositories.bzl", "rules_node_binding_setup")