diff --git a/MODULE.bazel b/MODULE.bazel index 20cce55..67c1db6 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "rules_flex", - version = "0.2.1", + version = "0.3", compatibility_level = 1, ) diff --git a/README.md b/README.md index e1877cb..f63d58f 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.1") +bazel_dep(name = "rules_flex", 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_flex", # Obtain the package checksum from the release page: - # https://github.com/jmillikin/rules_flex/releases/tag/v0.2.1 + # https://github.com/jmillikin/rules_flex/releases/tag/v0.3 sha256 = "", - urls = ["https://github.com/jmillikin/rules_flex/releases/download/v0.2.1/rules_flex-v0.2.1.tar.xz"], + urls = ["https://github.com/jmillikin/rules_flex/releases/download/v0.3/rules_flex-v0.3.tar.xz"], ) load("@rules_flex//flex:flex.bzl", "flex_register_toolchains")