From fde42399de2bef432ae54fa40368530ba6cd84e0 Mon Sep 17 00:00:00 2001 From: Yonas Kolb Date: Sun, 17 Mar 2019 13:52:13 +1100 Subject: [PATCH] update to xcodeproj 6.6 --- CHANGELOG.md | 4 ++++ Docs/ProjectSpec.md | 4 +++- Package.resolved | 4 ++-- Package.swift | 2 +- Sources/ProjectSpec/Linkage.swift | 1 + 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e15f9253..b2b71243 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ - Added ability to set `link` to false in framework dependencies [#532](https://github.com/yonaskolb/XcodeGen/pull/532) @dimatosaurus - Added `missingConfigFiles` to `options.disabledValidations` to optionally skip checking for the existence of config files. - Added ability to define a per-platform `deploymentTarget` for Multi-Platform targets. [#510](https://github.com/yonaskolb/XcodeGen/pull/510) @ainopara +- Added support for `app-extension.intents-service` target type [#536](https://github.com/yonaskolb/XcodeGen/pull/536) @yonaskolb #### Changed - **DEPRECATION**: Placeholders `$target_name` and `$platform` have been deprecated in favour of `${target_name}` and `${platform}`. Support for the old placeholders will be removed in a future version [#533](https://github.com/yonaskolb/XcodeGen/pull/533) @tomquist @@ -35,6 +36,9 @@ [Commits](https://github.com/yonaskolb/XcodeGen/compare/2.2.0...2.3.0) +#### Changed +- Updated to xcodeproj 6.6 which includes project writing performance improvements [#536](https://github.com/yonaskolb/XcodeGen/pull/536) @yonaskolb + ## 2.2.0 #### Added diff --git a/Docs/ProjectSpec.md b/Docs/ProjectSpec.md index b610a72e..7f804069 100644 --- a/Docs/ProjectSpec.md +++ b/Docs/ProjectSpec.md @@ -227,9 +227,10 @@ This will provide default build settings for a certain product type. It can be a - `application.messages` - `application.watchapp` - `application.watchapp2` +- `app-extension` - `app-extension.messages` - `app-extension.messages-sticker-pack` -- `app-extension` +- `app-extension.intents-service` - `bundle` - `bundle.unit-test` - `bundle.ui-testing` @@ -242,6 +243,7 @@ This will provide default build settings for a certain product type. It can be a - `tv-app-extension` - `watchkit-extension` - `watchkit2-extension` +- `xcode-extension` - `xpc-service` - ``""`` (used for legacy targets) diff --git a/Package.resolved b/Package.resolved index fad2b4b4..37f7c688 100644 --- a/Package.resolved +++ b/Package.resolved @@ -69,8 +69,8 @@ "repositoryURL": "https://github.com/tuist/xcodeproj.git", "state": { "branch": null, - "revision": "8e15cc74149ee946b7ae125685177915b4ff7317", - "version": "6.4.0" + "revision": "3fe1bd763072c81050b867d34db56d11cb9085bb", + "version": "6.6.0" } }, { diff --git a/Package.swift b/Package.swift index e0a50310..78112db1 100644 --- a/Package.swift +++ b/Package.swift @@ -15,7 +15,7 @@ let package = Package( .package(url: "https://github.com/yonaskolb/JSONUtilities.git", from: "4.1.0"), .package(url: "https://github.com/kylef/Spectre.git", from: "0.9.0"), .package(url: "https://github.com/onevcat/Rainbow.git", from: "3.0.0"), - .package(url: "https://github.com/tuist/xcodeproj.git", .exact("6.4.0")), + .package(url: "https://github.com/tuist/xcodeproj.git", .exact("6.6.0")), .package(url: "https://github.com/jakeheis/SwiftCLI.git", from: "5.2.0"), ], targets: [ diff --git a/Sources/ProjectSpec/Linkage.swift b/Sources/ProjectSpec/Linkage.swift index ec2b71e1..166a8681 100644 --- a/Sources/ProjectSpec/Linkage.swift +++ b/Sources/ProjectSpec/Linkage.swift @@ -16,6 +16,7 @@ extension Target { .bundle, .commandLineTool, .instrumentsPackage, + .intentsServiceExtension, .messagesApplication, .messagesExtension, .ocUnitTestBundle,