Skip to content
This repository was archived by the owner on Aug 4, 2022. It is now read-only.

Commit f79e776

Browse files
author
Jeff Verkoeyen
committed
Merge branch 'release-candidate' into develop
2 parents 40d399e + d2f90a5 commit f79e776

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 4.1.1
2+
3+
This patch release fixes a bug in bazel argument expansion affecting arguments like
4+
`"--ios_simulator_device=iPad Pro (12.9-inch)"`.
5+
6+
## Source changes
7+
8+
* [Use array expansion to add extra bazel args to the bazel invocation. (#17)](https://github.com/material-foundation/kokoro-ios-runner/commit/40d399e7f163b41bebf3a54200077689caf3fd0b) (featherless)
9+
* [Remove unused header.](https://github.com/material-foundation/kokoro-ios-runner/commit/b4f3ada1d45288f5810c9c3db538f4accca647c9) (Jeff Verkoeyen)
10+
111
# 4.1.0
212

313
This minor release introduces support for passing arbitrary flags to bazel invocations.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fi
1818

1919
pushd .kokoro-ios-runner
2020
git fetch
21-
git checkout v4.1.0
21+
git checkout v4.1.1
2222
popd
2323

2424
./.kokoro-ios-runner/xcodebuild.sh "MotionInterchange/MotionInterchange.xcodeproj" MotionInterchange "iPhone SE"
@@ -44,7 +44,7 @@ fi
4444

4545
pushd .kokoro-ios-runner
4646
git fetch
47-
git checkout v4.1.0
47+
git checkout v4.1.1
4848
popd
4949

5050
./.kokoro-ios-runner/bazel.sh test //:CatalogByConventionTests --min-xcode-version 8.0.0

bazel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# Fail on any error.
4040
set -e
4141

42-
script_version="v4.1.0"
42+
script_version="v4.1.1"
4343
echo "$(basename $0) version $script_version"
4444

4545
version_as_number() {

xcodebuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ run() {
9898
fi
9999
}
100100

101-
script_version="v4.1.0"
101+
script_version="v4.1.1"
102102
echo "build_and_test version $script_version"
103103

104104
project="$1"

0 commit comments

Comments
 (0)