update to xcodeproj 6.6

This commit is contained in:
Yonas Kolb
2019-04-01 20:07:07 +11:00
committed by yonaskolb
parent 6b431a204d
commit fde42399de
5 changed files with 11 additions and 4 deletions
+4
View File
@@ -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
+3 -1
View File
@@ -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)
+2 -2
View File
@@ -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"
}
},
{
+1 -1
View File
@@ -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: [
+1
View File
@@ -16,6 +16,7 @@ extension Target {
.bundle,
.commandLineTool,
.instrumentsPackage,
.intentsServiceExtension,
.messagesApplication,
.messagesExtension,
.ocUnitTestBundle,