From 7b5b14504cdbf154a8d51cb1442c9d792eca73ee Mon Sep 17 00:00:00 2001 From: John Millikin Date: Sat, 5 Oct 2024 12:26:07 +0900 Subject: [PATCH] rules_bison v0.3 GitOrigin-RevId: 43fb433622560799542133db37a92d8229d1072e --- MODULE.bazel | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 5fee6f8..fb00a4a 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "rules_bison", - version = "0.2.2", + version = "0.3", compatibility_level = 1, ) diff --git a/README.md b/README.md index 96a8489..6b907df 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ API reference: [docs/rules_bison.md](docs/rules_bison.md) Add the following to your `MODULE.bazel`: ```python -bazel_dep(name = "rules_bison", version = "0.2.2") +bazel_dep(name = "rules_bison", version = "0.3") ``` To specify a version or build with additional C compiler options, use the @@ -58,9 +58,9 @@ m4_register_toolchains(version = "1.4.18") http_archive( name = "rules_bison", # Obtain the package checksum from the release page: - # https://github.com/jmillikin/rules_bison/releases/tag/v0.2.2 + # https://github.com/jmillikin/rules_bison/releases/tag/v0.3 sha256 = "", - urls = ["https://github.com/jmillikin/rules_bison/releases/download/v0.2.2/rules_bison-v0.2.2.tar.xz"], + urls = ["https://github.com/jmillikin/rules_bison/releases/download/v0.3/rules_bison-v0.3.tar.xz"], ) load("@rules_bison//bison:bison.bzl", "bison_register_toolchains")