Releases: bookingcom/rules_booking
Releases · bookingcom/rules_booking
v0.0.1
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
- Adding rules by @manuelnaranjo in #1
- Update gitlab.bzl by @manuelnaranjo in #2
- improve gitlab_http_file by @manuelnaranjo in #4
- Several improvements by @manuelnaranjo in #5
- Create main.yml by @manuelnaranjo in #6
- introducing dependency_check rule by @manuelnaranjo in #7
- ci improvements by @manuelnaranjo in #8
- fix: make rules_booking portable by @manuelnaranjo in #9
- tar: fix bug in tar remapping by @manuelnaranjo in #10
- Move to bazel7 by @manuelnaranjo in #11
- Create release process by @manuelnaranjo in #12
New Contributors
- @manuelnaranjo made their first contribution in #1
Full Changelog: https://github.com/bookingcom/rules_booking/commits/v0.0.1
v0.0.1-rc2
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
- Adding rules by @manuelnaranjo in #1
- Update gitlab.bzl by @manuelnaranjo in #2
- improve gitlab_http_file by @manuelnaranjo in #4
- Several improvements by @manuelnaranjo in #5
- Create main.yml by @manuelnaranjo in #6
- introducing dependency_check rule by @manuelnaranjo in #7
- ci improvements by @manuelnaranjo in #8
- fix: make rules_booking portable by @manuelnaranjo in #9
- tar: fix bug in tar remapping by @manuelnaranjo in #10
- Move to bazel7 by @manuelnaranjo in #11
New Contributors
- @manuelnaranjo made their first contribution in #1
Full Changelog: https://github.com/bookingcom/rules_booking/commits/v0.0.1-rc2
v0.0.1-rc1
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()