From 08dde88400f889e1331db7216f5ee42668691048 Mon Sep 17 00:00:00 2001 From: Anthony Shoumikhin Date: Tue, 8 May 2018 11:41:15 -0700 Subject: [PATCH] Upgrade Bazel. --- BUILD | 6 ++++-- WORKSPACE | 6 +++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/BUILD b/BUILD index 6e1c9ac..a09a155 100644 --- a/BUILD +++ b/BUILD @@ -126,8 +126,10 @@ swift_library( srcs = glob([ "Tests/PromisesPerformanceTests/*.swift", ]), - copts = SWIFT_COPTS, - swift_version = 4, + copts = SWIFT_COPTS + [ + "-swift-version", + "4", + ], deps = [ ":FBLPromisesTestHelpers", ":PromisesTestHelpers", diff --git a/WORKSPACE b/WORKSPACE index 03d0808..e37a3a3 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -1,17 +1,17 @@ git_repository( name = "bazel_skylib", remote = "https://github.com/bazelbuild/bazel-skylib.git", - tag = "0.2.0", + tag = "0.3.1", ) git_repository( name = "build_bazel_rules_apple", remote = "https://github.com/bazelbuild/rules_apple.git", - tag = "0.3.0", + tag = "0.5.0", ) http_file( name = "xctestrunner", executable = 1, - url = "https://github.com/google/xctestrunner/releases/download/0.2.1/ios_test_runner.par", + url = "https://github.com/google/xctestrunner/releases/download/0.2.2/ios_test_runner.par", )