This repository was archived by the owner on Aug 4, 2022. It is now read-only.
v4.0.0
This major release introduces support for configuring bazel output verbosity.
Breaking changes
The minimum Xcode version must now be provided as a flag.
// Old invocations:
bazel.sh build //:CatalogByConvention 8.2
// New invocations:
bazel.sh build //:CatalogByConvention --min-xcode-version 8.2
New features
Local bazel builds no longer build with verbose output. To enable verbose output, pass the -v
flag
to the bazel.sh script.
Source changes
- Add arguments for configuring verbosity to the bazel runner (#15) (featherless)
- Remove outdated comment (#12) (featherless)
API changes
bazel.sh now supports a -v
argument for enabling verbosity on local builds. Verbose output is
always enabled on kokoro builds.