mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2025-01-06 04:35:43 +03:00
Update and lock XcodeProj to 7.7.0 (#767)
This commit is contained in:
parent
8b12837cdb
commit
6b7b7e6134
@ -2,6 +2,12 @@
|
||||
|
||||
## Next Version
|
||||
|
||||
#### Fixed
|
||||
- Fixed compilation as library by locking down XcodeProj version [#767](https://github.com/yonaskolb/XcodeGen/pull/767) @yonaskolb
|
||||
|
||||
#### Internal
|
||||
- Updated to XcodeProj 7.7.0 [#767](https://github.com/yonaskolb/XcodeGen/pull/767) @yonaskolb
|
||||
|
||||
## 2.12.0
|
||||
|
||||
#### Added
|
||||
|
@ -60,8 +60,8 @@
|
||||
"repositoryURL": "https://github.com/tuist/XcodeProj.git",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "0bea96dacbc7031893646be56c19e7a5e2c2881d",
|
||||
"version": "7.4.0"
|
||||
"revision": "bc3e31ea714a2ced4871b583141073405f279bab",
|
||||
"version": "7.7.0"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -16,7 +16,7 @@ let package = Package(
|
||||
.package(url: "https://github.com/yonaskolb/JSONUtilities.git", from: "4.2.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", from: "7.4.0"),
|
||||
.package(url: "https://github.com/tuist/XcodeProj.git", .exact("7.7.0")),
|
||||
.package(url: "https://github.com/jakeheis/SwiftCLI.git", from: "6.0.0"),
|
||||
],
|
||||
targets: [
|
||||
|
@ -32,7 +32,7 @@ extension Target {
|
||||
.xcodeExtension,
|
||||
.xpcService:
|
||||
return .none
|
||||
case .framework:
|
||||
case .framework, .xcFramework:
|
||||
// TODO: This should check `MACH_O_TYPE` in case this is a "Static Framework"
|
||||
return .dynamic
|
||||
case .dynamicLibrary:
|
||||
|
@ -313,6 +313,8 @@
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 1020;
|
||||
TargetAttributes = {
|
||||
};
|
||||
};
|
||||
buildConfigurationList = D91E14E36EC0B415578456F2 /* Build configuration list for PBXProject "Project" */;
|
||||
compatibilityVersion = "Xcode 10.0";
|
||||
|
@ -146,6 +146,8 @@
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 1020;
|
||||
TargetAttributes = {
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 425866ADA259DB93FC4AF1E3 /* Build configuration list for PBXProject "SPM" */;
|
||||
compatibilityVersion = "Xcode 10.0";
|
||||
|
@ -62,6 +62,8 @@
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 1020;
|
||||
TargetAttributes = {
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 3DFC1105373EDB6483D4BC5D /* Build configuration list for PBXProject "AnotherProject" */;
|
||||
compatibilityVersion = "Xcode 10.0";
|
||||
|
@ -51,6 +51,8 @@
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 1020;
|
||||
TargetAttributes = {
|
||||
};
|
||||
};
|
||||
buildConfigurationList = E903F6E8184E2A86CEC31778 /* Build configuration list for PBXProject "TestProject" */;
|
||||
compatibilityVersion = "Xcode 10.0";
|
||||
|
Loading…
Reference in New Issue
Block a user