Skip to content

v0.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Nov 19:49
· 117 commits to main since this release

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.3.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 = "56819f7aa06074b2f10f288c321d3c611b5af2197cad2701e0b3f3637926152c",
    strip_prefix = "rules_ruby-0.3.0",
    url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.3.0/rules_ruby-v0.3.0.tar.gz",
)

What's Changed

  • chore: Configure Renovate by @renovate in #29
  • chore(deps): update p0deje/setup-bazel action to v0.3.2 by @renovate in #31
  • chore(deps): update dependency bazel_gazelle to v0.34.0 by @renovate in #37
  • chore(deps): update dependency io_bazel_rules_go to v0.43.0 by @renovate in #35
  • chore(deps): update dependency bazel_skylib_gazelle_plugin to v1.5.0 by @renovate in #34
  • Support registering system Ruby by @p0deje in #28
  • feat: improve runfiles handling by @p0deje in #38

New Contributors

Full Changelog: v0.2.0...v0.3.0