Skip to content

1.0.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@aiuto aiuto released this 04 Oct 19:11
e5cf539

WARNING - unittests do not work. Wait for 1.0.1

Incompatible Changes

  • @bazel_skylib//:lib.bzl is removed. You now must specify specific modules
    via @bazel_skylib//lib:.bzl.
  • maprule.bzl is removed.

New Features

  • Added types.is_set() to test whether an arbitrary object is a set as defined by sets.bzl.

WORKSPACE setup

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "bazel_skylib",
    url = "https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.0/bazel-skylib-1.0.0.tar.gz",
    sha256 = "e72747100a8b6002992cc0bf678f6279e71a3fd4a88cab3371ace6c73432be30",
)
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()

Using the rules

See the source.