diff --git a/CHANGELOG.md b/CHANGELOG.md index dce01b4..7939d75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,7 +41,7 @@ Release 0.9.0 https://docs.google.com/document/d/1vc8v-kXjvgZOdQdnxPTaV0rrLxtP2XwnD2tAZlYJOqw/edit#bookmark=id.iiumwic0jphr - selects.bzl: Add config_setting_group for config_setting AND/OR-chaining Implements - https://github.com/bazelbuild/proposals/blob/master/designs/2018-11-09-config-setting-chaining.md. + https://github.com/bazelbuild/proposals/blob/HEAD/designs/2018-11-09-config-setting-chaining.md. - Make sets.bzl point to new_sets.bzl instead of old_sets.bzl. new_sets.bzl and old_sets.bzl should be removed in the following skylib release. diff --git a/docs/build_test_doc.md b/docs/build_test_doc.md index 6f3c597..b1cd020 100755 --- a/docs/build_test_doc.md +++ b/docs/build_test_doc.md @@ -57,7 +57,7 @@ Typical usage: optional.

- The common attributes for tests. + The common attributes for tests.

diff --git a/docs/diff_test_doc.md b/docs/diff_test_doc.md index 07ce8b9..a031145 100755 --- a/docs/diff_test_doc.md +++ b/docs/diff_test_doc.md @@ -49,7 +49,7 @@ The test succeeds if the files' contents match. optional.

- The common attributes for tests. + The common attributes for tests.

diff --git a/docs/native_binary_doc.md b/docs/native_binary_doc.md index 9cf90f4..742e81b 100755 --- a/docs/native_binary_doc.md +++ b/docs/native_binary_doc.md @@ -55,7 +55,7 @@ You can "bazel run" this rule like any other binary rule, and use it as a tool i optional.

- The common attributes for binaries. + The common attributes for binaries.

@@ -121,7 +121,7 @@ runfiles. optional.

- The common attributes for tests. + The common attributes for tests.

diff --git a/docs/run_binary_doc.md b/docs/run_binary_doc.md index 188e277..cde8b40 100755 --- a/docs/run_binary_doc.md +++ b/docs/run_binary_doc.md @@ -29,7 +29,7 @@ Runs a binary as a build action.

This rule does not require Bash (unlik List of strings; optional

- Command line arguments of the binary.

Subject to$(location) expansion. + Command line arguments of the binary.

Subject to$(location) expansion.

@@ -38,7 +38,7 @@ Runs a binary as a build action.

This rule does not require Bash (unlik Dictionary: String -> String; optional

- Environment variables of the action.

Subject to $(location) expansion. + Environment variables of the action.

Subject to $(location) expansion.

diff --git a/rules/build_test.bzl b/rules/build_test.bzl index edcb50a..f06e0d4 100644 --- a/rules/build_test.bzl +++ b/rules/build_test.bzl @@ -41,7 +41,7 @@ def build_test(name, targets, **kwargs): Args: name: The name of the test rule. targets: A list of targets to ensure build. - **kwargs: The common attributes for tests. + **kwargs: The common attributes for tests. """ if len(targets) == 0: fail("targets must be non-empty", "targets") diff --git a/rules/common_settings.bzl b/rules/common_settings.bzl index e80ab09..7f56a7f 100644 --- a/rules/common_settings.bzl +++ b/rules/common_settings.bzl @@ -18,7 +18,7 @@ These rules return a BuildSettingInfo with the value of the build setting. For label-typed settings, use the native label_flag and label_setting rules. More documentation on how to use build settings at -https://docs.bazel.build/versions/master/skylark/config.html#user-defined-build-settings +https://docs.bazel.build/versions/main/skylark/config.html#user-defined-build-settings """ BuildSettingInfo = provider( diff --git a/rules/diff_test.bzl b/rules/diff_test.bzl index 93cf363..71faf40 100644 --- a/rules/diff_test.bzl +++ b/rules/diff_test.bzl @@ -135,7 +135,7 @@ def diff_test(name, file1, file2, **kwargs): name: The name of the test rule. file1: Label of the file to compare to file2. file2: Label of the file to compare to file1. - **kwargs: The common attributes for tests. + **kwargs: The common attributes for tests. """ _diff_test( name = name, diff --git a/rules/native_binary.bzl b/rules/native_binary.bzl index 7d885a0..6675a92 100644 --- a/rules/native_binary.bzl +++ b/rules/native_binary.bzl @@ -76,7 +76,7 @@ def native_binary(name, src, out, data = None, **kwargs): src: label; path of the pre-built executable out: output; an output name for the copy of the binary. (Bazel requires that this rule make a copy of 'src'.) data: list of labels; data dependencies - **kwargs: The common attributes for binaries. + **kwargs: The common attributes for binaries. """ _native_binary( name = name, @@ -101,7 +101,7 @@ def native_test(name, src, out, data = None, **kwargs): src: label; path of the pre-built executable out: output; an output name for the copy of the binary. (Bazel requires that this rule make a copy of 'src'.) data: list of labels; data dependencies - **kwargs: The common attributes for tests. + **kwargs: The common attributes for tests. """ _native_test( name = name, diff --git a/rules/run_binary.bzl b/rules/run_binary.bzl index 10f1ab5..c251019 100644 --- a/rules/run_binary.bzl +++ b/rules/run_binary.bzl @@ -76,7 +76,7 @@ run_binary = rule( ), "env": attr.string_dict( doc = "Environment variables of the action.

Subject to " + - " $(location)" + + " $(location)" + " expansion.", ), "srcs": attr.label_list( @@ -91,7 +91,7 @@ run_binary = rule( ), "args": attr.string_list( doc = "Command line arguments of the binary.

Subject to" + - "$(location)" + + "$(location)" + " expansion.", ), },