Skip to content

0.9.0

Compare
Choose a tag to compare
@aiuto aiuto released this 29 Mar 03:50
· 133 commits to main since this release
7d7a076

New Features

  • verify_archive rule to do e2e tests on built archives. (#644)

Incompatible Changes

  • Genericize package manifest system and interface (#660)

** Bug Fixes **

  • pkg_tar should not prefix tree artifacts with ./ (#681)
  • pkg_tar, pkg_zip: improve support for long paths on Windows (#672)

Thanks to

Tomasz Wojno, Clint Harrison, Qingyu Sui, Ryan Beasley.

WORKSPACE setup

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_pkg",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.9.0/rules_pkg-0.9.0.tar.gz",
        "https://github.com/bazelbuild/rules_pkg/releases/download/0.9.0/rules_pkg-0.9.0.tar.gz",
    ],
    sha256 = "335632735e625d408870ec3e361e192e99ef7462315caa887417f4d88c4c8fb8",
)
load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies")
rules_pkg_dependencies()

Using the rules

See the source.