Skip to content

8.5.1.3

Latest

Choose a tag to compare

@github-actions github-actions released this 15 Jul 18:29
9431e57

What's Changed

  • Improve cross exec platform toolchain selection by @keith in #146
  • Remove examples/ and tests/ from archive by @keith in #155
  • Fix windows without runfiles by @keith in #156
  • Fix --noenable_runfiles on non Windows by @keith in #158
  • Fix buildifier_test not exiting with a failure code by @keith in #159
  • Make binary rules run from workspace by @keith in #162

Full Changelog: 8.5.1.2...8.5.1.3

MODULE.bazel Snippet

bazel_dep(name = "buildifier_prebuilt", version = "8.5.1.3", dev_dependency = True)

WORKSPACE Snippet

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "buildifier_prebuilt",
    sha256 = "f635ebab2b5eaa5dd4fdc16f77565aea920e8231e37aef9441fd346254c16f46",
    strip_prefix = "buildifier-prebuilt-8.5.1.3",
    urls = [
        "https://github.com/keith/buildifier-prebuilt/releases/download/8.5.1.3/buildifier-prebuilt.8.5.1.3.tar.gz",
    ],
)

load("@buildifier_prebuilt//:deps.bzl", "buildifier_prebuilt_deps")

buildifier_prebuilt_deps()

load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")

bazel_skylib_workspace()

load("@buildifier_prebuilt//:defs.bzl", "buildifier_prebuilt_register_toolchains")

buildifier_prebuilt_register_toolchains()