From 8c76035594a2cfb2e8aedbc8bc189a79d986f80d Mon Sep 17 00:00:00 2001 From: John Millikin Date: Wed, 17 May 2023 11:04:21 +0900 Subject: [PATCH] rules_flex v0.2.1 GitOrigin-RevId: 4aba2b432860e0a981581804df3c3da624fd5732 --- MODULE.bazel | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index e1b3d9a..20cce55 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "rules_flex", - version = "0.2", + version = "0.2.1", compatibility_level = 1, ) diff --git a/README.md b/README.md index 4a1649a..00c7f81 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ API reference: [docs/rules_flex.md](docs/rules_flex.md) Add the following to your `MODULE.bazel`: ```python -bazel_dep(name = "rules_flex", version = "0.2") +bazel_dep(name = "rules_flex", version = "0.2.1") ``` 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_flex", # Obtain the package checksum from the release page: - # https://github.com/jmillikin/rules_flex/releases/tag/v0.2 + # https://github.com/jmillikin/rules_flex/releases/tag/v0.2.1 sha256 = "", - urls = ["https://github.com/jmillikin/rules_flex/releases/download/v0.2/rules_flex-v0.2.tar.xz"], + urls = ["https://github.com/jmillikin/rules_flex/releases/download/v0.2.1/rules_flex-v0.2.1.tar.xz"], ) load("@rules_flex//flex:flex.bzl", "flex_register_toolchains")