Skip to content

v0.20.0

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Jun 14:54
· 6 commits to main since this release

Using Bzlmod with Bazel 7-8

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.20.0")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.20.0")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

# Skylib is a dependency, remove if you already have it.
http_archive(
    name = "bazel_skylib",
    sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
        "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
    ],
)

http_archive(
    name = "rules_ruby",
    sha256 = "15d56618eeb27f683cfdadeea1ab2939a80be7ce357cee3cc0a6e22acd39ac6c",
    strip_prefix = "rules_ruby-0.20.0",
    url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.20.0/rules_ruby-v0.20.0.tar.gz",
)

What's Changed

  • test: prepare for bazel 9 built-in rules migration by @p0deje in #232
  • Fix runfiles merging for @bazel_tools//tools/bash/runfiles by @fmeum in #234
  • chore(deps): update dependency rules_go to v0.55.1 by @renovate in #241
  • chore(deps): update dependency buildifier_prebuilt to v8.2.0.2 by @renovate in #239
  • chore(deps): update dependency aspect_bazel_lib to v2.19.4 by @renovate in #236
  • chore(deps): update bazel-contrib/setup-bazel action to v0.15.0 by @renovate in #235
  • chore(deps): update dependency gazelle to v0.44.0 by @renovate in #240
  • chore(deps): update dependency bazel to v8.3.0 by @renovate in #237
  • chore(deps:) do not autoupdate bazel_features by @p0deje in #242

New Contributors

Full Changelog: v0.19.0...v0.20.0