Skip to content

v0.0.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 28 Aug 07:59

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "rules_booking", version = "0.0.1")

archive_override(
    module_name = "rules_booking",
    integrity = "sha256-UJehUVTt8r+mLY5US1Bk14vA124m2pX2z46/FT/aVac=",
    strip_prefix = "rules_booking-v0.0.1",
    urls = [
        "https://github.com/bookingcom/rules_booking/releases/download/v0.0.1/rules_booking-v0.0.1.tar.gz",
    ]
)

Using WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_booking",
    sha256 = "5097a15154edf2bfa62d8e544b5064d78bc0d76e26da95f6cf8ebf153fda55a7",
    strip_prefix = "rules_booking-v0.0.1",
    url = "https://github.com/bookingcom/rules_booking/releases/download/v0.0.1/rules_booking-v0.0.1.tar.gz",
)

load(
    "@rules_booking//:repositories.bzl",
    rules_booking_repositories = "repositories",
)

rules_booking_repositories()

load(
    "@rules_booking//:dependencies.bzl",
    rules_booking_dependencies = "dependencies",
)

rules_booking_dependencies()

What's Changed

New Contributors

Full Changelog: https://github.com/bookingcom/rules_booking/commits/v0.0.1