From ad06caa7c0f4121ec4159b252605ef6670748643 Mon Sep 17 00:00:00 2001 From: Tony Aiuto Date: Mon, 15 May 2023 15:13:10 -0400 Subject: [PATCH 1/3] v 0.0.5 --- version.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.bzl b/version.bzl index 0acecb6..f732579 100644 --- a/version.bzl +++ b/version.bzl @@ -13,4 +13,4 @@ # limitations under the License. """The version of rules_license.""" -version = "0.0.4" +version = "0.0.5" From f4b645a26177af85151c3a51d78d2c5310cdf884 Mon Sep 17 00:00:00 2001 From: Tony Aiuto Date: Mon, 15 May 2023 15:31:09 -0400 Subject: [PATCH 2/3] update docs --- docs/latest.md | 44 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 41 insertions(+), 3 deletions(-) diff --git a/docs/latest.md b/docs/latest.md index a7c373f..58dc1c6 100755 --- a/docs/latest.md +++ b/docs/latest.md @@ -86,7 +86,12 @@ package_info(name, @@ -117,7 +122,12 @@ Provides information about a license instance. -Providers for license rules. +Basic providers for license rules. + +This file should only contain the basic providers needed to create +license and package_info declarations. Providers needed to gather +them are declared in other places. + @@ -143,7 +153,12 @@ Provides information about a license_kind instance. -Providers for license rules. +Basic providers for license rules. + +This file should only contain the basic providers needed to create +license and package_info declarations. Providers needed to gather +them are declared in other places. + @@ -168,3 +183,26 @@ Provides information about a package. + + +Rules and macros for collecting package metdata providers. + + + +## trace + +
+trace(name)
+
+ +Used to allow the specification of a target to trace while collecting license dependencies. + +**ATTRIBUTES** + + +| Name | Description | Type | Mandatory | Default | +| :------------- | :------------- | :------------- | :------------- | :------------- | +| name | A unique name for this target. | Name | required | | + + + From 9f9284cc7e9d366af9eb52675b9d81c0bb0729d7 Mon Sep 17 00:00:00 2001 From: Tony Aiuto Date: Mon, 15 May 2023 15:32:03 -0400 Subject: [PATCH 3/3] mod --- MODULE.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MODULE.bazel b/MODULE.bazel index 114446a..099cb2d 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "rules_license", - version = "0.0.4", # Keep in sync with version.bzl + version = "0.0.5", # Keep in sync with version.bzl compatibility_level = 1, )