Skip to content

v0.10.0

Compare
Choose a tag to compare
@github-actions github-actions released this 07 May 00:13
· 121 commits to main since this release

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.10.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.10.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 = "eebc51710d0c3557abfe4cced98f5b5b234620525bd5c3911f52230d0ee5db7f",
    strip_prefix = "rules_ruby-0.10.0",
    url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.10.0/rules_ruby-v0.10.0.tar.gz",
)

What's Changed

  • chore(deps): update dependency aspect_bazel_lib to v2.6.0 by @renovate in #104
  • chore(deps): update dependency aspect_bazel_lib to v2.7.0 by @renovate in #105
  • chore(deps): update dependency bazel_gazelle to v0.36.0 by @renovate in #106
  • chore(deps): update bazel-contrib/setup-bazel action to v0.8.2 by @renovate in #107
  • chore(deps): update dependency aspect_bazel_lib to v2.7.1 by @renovate in #109
  • chore(deps): update dependency io_bazel_rules_go to v0.47.0 by @renovate in #110
  • chore(deps): update dependency bazel_skylib_gazelle_plugin to v1.6.0 by @renovate in #112
  • chore(deps): update dependency aspect_bazel_lib to v2.7.2 by @renovate in #114
  • chore(deps): update dependency bazel_skylib_gazelle_plugin to v1.6.1 by @renovate in #113
  • feat: 0.10.0 release by @p0deje in #111
  • ci: fix jekyll example not starting by @p0deje in #116

Full Changelog: v0.9.1...v0.10.0