Skip to content

v0.8.0

Choose a tag to compare

@github-actions github-actions released this 01 May 02:37
· 16 commits to main since this release
c008527

Using Bzlmod with Bazel 7+

Add to your MODULE.bazel:

bazel_dep(name = "gazelle_py", version = "0.8.0")

Using a non-registry override

bazel_dep(name = "gazelle_py", version = "0.8.0")

archive_override(
    module_name = "gazelle_py",
    integrity = "sha256-oCUPZWdkSH2JNbhFXPKKroGbkLunr7A2OTqWMMkbYpQ=",
    strip_prefix = "gazelle_py-0.8.0",
    urls = ["https://github.com/perplexityai/gazelle_py/releases/download/v0.8.0/gazelle_py-v0.8.0.tar.gz"],
)

What's Changed

  • py: skip_empty_init suppresses rule, no longer strips init.py from srcs by @longlho in #39
  • py: AST-driven emptiness for python_skip_empty_init by @longlho in #40

Full Changelog: v0.7.1...v0.8.0