Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • bazel/rules_diff
  • alexeagle/rules_diff
2 results
Show changes
Commits on Source (6)
7.1.0
7.4.0
# [1.0.0-beta.6](https://git.gitlab.arm.com/bazel/rules_diff/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2024-11-26)
### Bug Fixes
- update dependencies for Bazel 8 support ([10342df](https://git.gitlab.arm.com/bazel/rules_diff/commit/10342df031320f4d413c2b1c7e35fa9edaabb272))
# [1.0.0-beta.5](https://git.gitlab.arm.com/bazel/rules_diff/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2024-10-30)
### 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.
......@@ -20,5 +27,7 @@ Release channels for `alpha`, `beta` and `stable` releases are used.
The [upstream configuration usage guide][semrel-release-channels-usage] provides information on how to perform a
release.
[semrel-release-channels-usage]:
https://gitlab.arm.com/semantic-release/config-release-channels/-/blob/main/README.md?ref_type=heads#usage
[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_diff",
version = "1.0.0-beta.5",
version = "1.0.0-beta.6",
bazel_compatibility = [
">=7.1.0",
],
compatibility_level = 1,
)
bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.17")
bazel_dep(name = "ape", version = "1.0.0-beta.14")
bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.18")
bazel_dep(name = "ape", version = "1.0.0-beta.15")
export = use_extension("@toolchain_utils//toolchain/export:defs.bzl", "toolchain_export")
......
This diff is collapsed.
7.1.0
7.4.0
......@@ -5,8 +5,8 @@ module(
],
)
bazel_dep(name = "toolchain_utils", version = "1.0.0-beta.17")
bazel_dep(name = "rules_coreutils", version = "1.0.0-beta.6")
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 = "bazel_skylib", version = "1.5.0")
bazel_dep(name = "rules_diff")
local_path_override(
......
This diff is collapsed.