1.3.0
Release 1.3.0
New Features
- Added
dicts.omit
anddicts.pick
(#304) - Added
expand_template
rule (#330) - Added
subpackages
module (#348) - Added
copy_directory
rule (#366) - Added
bzlmod
support (#385)
Incompatible Changes
native_binary
andnative_test
now use symlinks instead of copying, if the OS supports it (#340)native_binary
andnative_test
now build in target configuration instead of host configuration (#341)copy_file
no longer adds non-executables todefault_runfiles
(#326)
Contributors
Alex Eagle, Alexandre Rostovtsev, Barry McNamara, Derek Cormier, Fabian Meumertzheim, Geoffrey Martin-Noble, hchsiao, Kevin Kres, nickgooding, Vertexwahn, Vinh Tran
WORKSPACE setup
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()
MODULE.bazel setup
bazel_dep(name = "bazel_skylib", version = "1.3.0")