Skip to content
Commits on Source (4)
# [1.0.0-beta.6](https://git.gitlab.arm.com/bazel/rules_xz/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2024-11-26)
### Bug Fixes
- update dependencies for Bazel 8 support ([393d6c4](https://git.gitlab.arm.com/bazel/rules_xz/commit/393d6c4475289c1c6487f3778db2dff39164c154))
# [1.0.0-beta.5](https://git.gitlab.arm.com/bazel/rules_xz/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2024-11-04)
### Bug Fixes
......
# Contributing
# Getting Started
## Getting Started
[Install][bazelisk-install] `bazelisk` and run the tests:
......@@ -11,7 +11,14 @@ $ (cd e2e; bazelisk test //...)
[bazelisk-install]: https://github.com/bazelbuild/bazelisk?tab=readme-ov-file#installation
# Release
## Workflow
- Follow the [contributions guide] to be granted forking permissions.
- [Fork] the project
- Implement the change
- [Create merge request] from fork
## Release
`semantic-release` performs automatic releases of the project.
......@@ -21,3 +28,6 @@ The [upstream configuration usage guide][semrel-release-channels-usage] provides
release.
[semrel-release-channels-usage]: https://gitlab.arm.com/semantic-release/config-release-channels/-/blob/main/README.md?ref_type=heads#usage
[contributions guide]: https://gitlab.arm.com/documentation/contributions#contributions
[Fork]: https://docs.gitlab.com/ee/user/project/repository/forking_workflow.html#create-a-fork
[Create merge request]: https://docs.gitlab.com/ee/user/project/repository/forking_workflow.html#merge-changes-back-upstream
module(
name = "rules_xz",
version = "1.0.0-beta.5",
version = "1.0.0-beta.6",
bazel_compatibility = [
">=7.1.0",
],
compatibility_level = 1,
)
bazel_dep(name = "rules_coreutils", version = "1.0.0-beta.7")
bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.17")
bazel_dep(name = "ape", version = "1.0.0-beta.14")
bazel_dep(name = "rules_coreutils", version = "1.0.0-beta.8")
bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.18")
bazel_dep(name = "ape", version = "1.0.0-beta.15")
bazel_dep(name = "xz", version = "5.4.5.bcr.4", repo_name = "bcr")
bazel_dep(name = "hermetic_cc_toolchain", version = "3.1.0", dev_dependency = True)
......
This diff is collapsed.
# `bzlmod` pre-release registries
common --registry https://bcr.bazel.build
common --registry=https://gitlab.arm.com/bazel/rules_diff/-/releases/v1.0.0-beta.6/downloads
# Build cache
build --experimental_guard_against_concurrent_changes
......
......@@ -6,9 +6,9 @@ module(
)
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.17")
bazel_dep(name = "rules_coreutils", version = "1.0.0-beta.7")
bazel_dep(name = "rules_diff", version = "1.0.0-beta.5")
bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.18")
bazel_dep(name = "rules_coreutils", version = "1.0.0-beta.8")
bazel_dep(name = "rules_diff", version = "1.0.0-beta.6")
bazel_dep(name = "rules_xz")
local_path_override(
module_name = "rules_xz",
......
This diff is collapsed.