Skip to content

Commit

Permalink
updated to Swift 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Dahan committed May 16, 2019
1 parent 7260121 commit 32c2b80
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0
4.2
4 changes: 2 additions & 2 deletions Graph.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'Graph'
s.version = '2.2.2'
s.swift_version = '4.0'
s.version = '3.0'
s.swift_version = '4.2'
s.license = 'BSD-3-Clause'
s.summary = 'Graph is a semantic database that is used to create data-driven applications.'
s.homepage = 'http://graphswift.io'
Expand Down
8 changes: 5 additions & 3 deletions Graph.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0800;
LastUpgradeCheck = 0930;
LastUpgradeCheck = 1020;
ORGANIZATIONNAME = "Daniel Dahan";
TargetAttributes = {
96E3C3A81D3AB41F0086A024 = {
Expand Down Expand Up @@ -717,11 +717,11 @@
};
buildConfigurationList = 96E3C3A31D3AB41F0086A024 /* Build configuration list for PBXProject "Graph" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
Base,
);
mainGroup = 96E3C39F1D3AB41F0086A024;
productRefGroup = 96E3C3AA1D3AB41F0086A024 /* Products */;
Expand Down Expand Up @@ -940,6 +940,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
Expand Down Expand Up @@ -1004,6 +1005,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
Expand Down
2 changes: 1 addition & 1 deletion Graph.xcodeproj/xcshareddata/xcschemes/Graph iOS.xcscheme
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1000"
LastUpgradeVersion = "1020"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1000"
LastUpgradeVersion = "1020"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.2.2</string>
<string>3.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Watch.swift
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ fileprivate extension Watch {
}

/// Prepares graph for watching.
fileprivate func prepareGraph() {
func prepareGraph() {
graph.watchers.append(Watcher(object: self))
}

Expand Down

0 comments on commit 32c2b80

Please sign in to comment.