diff --git a/.bazelci/tests.yml b/.bazelci/tests.yml index 2f7edc4d..88e3699f 100644 --- a/.bazelci/tests.yml +++ b/.bazelci/tests.yml @@ -10,6 +10,10 @@ lts: <s rolling: &rolling bazel: rolling + build_flags: + - "--incompatible_use_platforms_repo_for_constraints" + # Do this after stardoc is updated + # - "--incompatible_disable_starlark_host_transitions" # # Groups of tests, by platform diff --git a/MODULE.bazel b/MODULE.bazel index 7cf71c73..8b8aaa42 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,11 +1,11 @@ module( name = "rules_pkg", - version = "0.8.1", # Must sync with version.bzl. + version = "0.8.2", # Must sync with version.bzl. repo_name = "rules_pkg", ) # Do not update to newer versions until you need a specific new feature. -bazel_dep(name = "rules_license", version = "0.0.3") +bazel_dep(name = "rules_license", version = "0.0.4") bazel_dep(name = "bazel_skylib", version = "1.2.0") bazel_dep(name = "rules_python", version = "0.10.2") diff --git a/pkg/deps.bzl b/pkg/deps.bzl index 3f9d342e..352bff64 100644 --- a/pkg/deps.bzl +++ b/pkg/deps.bzl @@ -40,9 +40,10 @@ def rules_pkg_dependencies(): http_archive, name = "rules_license", urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/rules_license/releases/download/0.0.1/rules_license-0.0.1.tar.gz", - ], - sha256 = "4865059254da674e3d18ab242e21c17f7e3e8c6b1f1421fffa4c5070f82e98b5", + "https://mirror.bazel.build/github.com/bazelbuild/rules_license/releases/download/0.0.4/rules_license-0.0.4.tar.gz", + "https://github.com/bazelbuild/rules_license/releases/download/0.0.4/rules_license-0.0.4.tar.gz", + ], + sha256 = "6157e1e68378532d0241ecd15d3c45f6e5cfd98fc10846045509fb2a7cc9e381", ) diff --git a/version.bzl b/version.bzl index 2395036d..9e7deb3f 100644 --- a/version.bzl +++ b/version.bzl @@ -13,4 +13,4 @@ # limitations under the License. """The version of rules_pkg.""" -version = "0.8.1" +version = "0.8.2"