Skip to content

Releases: bookingcom/rules_booking

v0.0.1

28 Aug 07:59
Compare
Choose a tag to compare

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

v0.0.1-rc2

28 Aug 07:32
Compare
Choose a tag to compare
v0.0.1-rc2 Pre-release
Pre-release

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

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

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

Using WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_booking",
    sha256 = "5445b4a7a732953b3b0e83d716b1aec99f444b2069579b678e7ae0a4c8394dc6",
    strip_prefix = "rules_booking-v0.0.1-rc2",
    url = "https://github.com/bookingcom/rules_booking/releases/download/v0.0.1-rc2/rules_booking-v0.0.1-rc2.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-rc2

v0.0.1-rc1

28 Aug 06:33
Compare
Choose a tag to compare
v0.0.1-rc1 Pre-release
Pre-release

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

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

archive_override(
    module_name = "rules_booking",
    integrity = "sha256-uckewbtc6ZJ/mOKNl3YJ1SOJxyKl7i+JvoHSB4INocM=",
    strip_prefix = "rules_booking-v0.0.1-rc1",
    urls = [
        "https://github.com/bookingcom/rules_booking/releases/download/v0.0.1-rc1/rules_booking-v0.0.1-rc1.tar.gz",
    ]
)

Using WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_booking",
    sha256 = "b9c91ec1bb5ce9927f98e28d977609d52389c722a5ee2f89be81d207820da1c3",
    strip_prefix = "rules_booking-v0.0.1-rc1",
    url = "https://github.com/bookingcom/rules_booking/releases/download/v0.0.1-rc1/rules_booking-v0.0.1-rc1.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()