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, ) diff --git a/docs/latest.md b/docs/latest.md index 27cfd2f..2005be2 100755 --- a/docs/latest.md +++ b/docs/latest.md @@ -85,7 +85,12 @@ package_info(name, @@ -115,7 +120,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. + @@ -141,7 +151,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. + @@ -166,3 +181,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 | | + + + 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"