Skip to content

0.3.0

Choose a tag to compare

@github-actions github-actions released this 07 Jun 20:40
· 26 commits to main since this release
0.3.0
7fec4a8

Version 0.3.0

Changelog

  • Added explicit load of sh_library (needed for bazel 9).
  • Upgraded dependencies: bazel 9.1.1, bazel_skylib 1.8.2, platforms 1.0.0, rules_shell 0.6.1.

For Bazel MODULES.bazel

bazel_dep(name = "helly25_bashtest", version = "0.3.0")

For Bazel WORKSPACE

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

http_archive(
  name = "com_helly25_bashtest",
  url = "https://github.com/helly25/bashtest/releases/download/0.3.0/bashtest-0.3.0.tar.gz",
  sha256 = "44d3b6e3c268e5b9ae6dc98b5d7c3a27b5846a825c1c7b3a0438ffe5ba31026c",
  strip_prefix = "bashtest-0.3.0",
)

Initializing the required modules

The project depends on some additional external repositories that can be added
manually of by calling the support functions in the user' WORKSPACE file:

load("@com_helly25_bashtest//bzl/workspace:load_modules.bzl", "helly25_bashtest_load_modules")

helly25_bashtest_load_modules()

load("@com_helly25_bashtest//bzl/workspace:init_modules.bzl", "helly25_bashtest_init_modules")

helly25_bashtest_init_modules()

What's Changed

Full Changelog: 0.2.0...0.3.0