Skip to content

Commit c8afc79

Browse files
author
Pedro Piñera
committed
Version 7.19.0
1 parent f0b1d1b commit c8afc79

File tree

5 files changed

+18
-24
lines changed

5 files changed

+18
-24
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Next
44

5+
## 7.19.0 - Kreuzberg
6+
57
### Fixed
68

79
- JSON decoder not properly decoding `defaultConfigurationIsVisible` in some projects [#593](https://github.com/tuist/XcodeProj/pull/593) by [@tjwio](https://github.com/tjwio)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Add the dependency in your `Package.swift` file:
4343
let package = Package(
4444
name: "myproject",
4545
dependencies: [
46-
.package(url: "https://github.com/tuist/xcodeproj.git", .upToNextMajor(from: "7.18.0"))
46+
.package(url: "https://github.com/tuist/xcodeproj.git", .upToNextMajor(from: "7.19.0"))
4747
],
4848
targets: [
4949
.target(
@@ -65,7 +65,7 @@ github "tuist/xcodeproj" ~> 7.11.
6565
### CocoaPods
6666

6767
```ruby
68-
pod 'xcodeproj', '~> 7.18.0
68+
pod 'xcodeproj', '~> 7.19.0
6969
```
7070
7171
### Scripting

XcodeProj_Carthage.xcodeproj/project.pbxproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@
110110
7FAD067EE084B2EF5EFE4BFF /* Embed Frameworks */ = {
111111
isa = PBXCopyFilesBuildPhase;
112112
buildActionMask = 2147483647;
113+
dstPath = "";
113114
dstSubfolderSpec = 10;
114115
files = (
115116
);
@@ -734,7 +735,7 @@
734735
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
735736
SWIFT_COMPILATION_MODE = singlefile;
736737
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
737-
SWIFT_VERSION = 5.3;
738+
SWIFT_VERSION = 5.3.2;
738739
VERSIONING_SYSTEM = "apple-generic";
739740
VERSION_INFO_PREFIX = "";
740741
};
@@ -875,7 +876,7 @@
875876
SUPPORTED_PLATFORMS = macosx;
876877
SWIFT_COMPILATION_MODE = wholemodule;
877878
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
878-
SWIFT_VERSION = 5.3;
879+
SWIFT_VERSION = 5.3.2;
879880
VERSIONING_SYSTEM = "apple-generic";
880881
VERSION_INFO_PREFIX = "";
881882
};

XcodeProj_Carthage.xcodeproj/xcshareddata/xcschemes/XcodeProj.xcscheme

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,21 +51,13 @@
5151
ReferencedContainer = "container:XcodeProj_Carthage.xcodeproj">
5252
</BuildableReference>
5353
</MacroExpansion>
54-
<CommandLineArguments>
55-
</CommandLineArguments>
56-
<EnvironmentVariables>
57-
</EnvironmentVariables>
5854
</LaunchAction>
5955
<ProfileAction
6056
buildConfiguration = "Release"
61-
shouldUseLaunchSchemeArgsEnv = "NO"
57+
shouldUseLaunchSchemeArgsEnv = "YES"
6258
savedToolIdentifier = ""
6359
useCustomWorkingDirectory = "NO"
6460
debugDocumentVersioning = "YES">
65-
<CommandLineArguments>
66-
</CommandLineArguments>
67-
<EnvironmentVariables>
68-
</EnvironmentVariables>
6961
<MacroExpansion>
7062
<BuildableReference
7163
BuildableIdentifier = "primary"

xcodeproj.podspec

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
21
Pod::Spec.new do |s|
3-
s.name = "xcodeproj"
4-
s.version = "7.18.0"
5-
s.summary = "Read/Modify/Write your Xcode projects"
6-
s.homepage = "https://github.com/tuist/xcodeproj"
2+
s.name = 'xcodeproj'
3+
s.version = '7.19.0'
4+
s.summary = 'Read/Modify/Write your Xcode projects'
5+
s.homepage = 'https://github.com/tuist/xcodeproj'
76
s.license = 'MIT'
8-
s.source = { :git => "https://github.com/tuist/xcodeproj.git", :tag => s.version.to_s }
7+
s.source = { git: 'https://github.com/tuist/xcodeproj.git', tag: s.version.to_s }
98
s.requires_arc = true
10-
s.authors = "Tuist"
11-
s.swift_version = "5.1"
9+
s.authors = 'Tuist'
10+
s.swift_version = '5.1'
1211
s.osx.deployment_target = '10.10'
1312

14-
s.source_files = "Sources/**/*.{swift}"
13+
s.source_files = 'Sources/**/*.{swift}'
1514

1615
s.module_name = 'XcodeProj'
1716

18-
s.dependency "PathKit", "~> 1.0.0"
19-
s.dependency "AEXML", "~> 4.6.0"
17+
s.dependency 'PathKit', '~> 1.0.0'
18+
s.dependency 'AEXML', '~> 4.6.0'
2019
end

0 commit comments

Comments
 (0)