Skip to content

Commit 57e0e84

Browse files
author
Daniel Dahan
committed
preparing for Siwft 4
1 parent 9dd15cd commit 57e0e84

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ profile
1616
*.moved-aside
1717
*.playground
1818
*.framework
19+
DerivedData
20+
Index
21+
Build
22+

Algorithm.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Algorithm'
3-
s.version = '3.0.0'
3+
s.version = '2.1.0'
44
s.license = 'BSD-3-Clause'
55
s.summary = 'A toolset for writing algorithms in Swift.'
66
s.homepage = 'http://algorithmswift.io'

Algorithm.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@
585585
SDKROOT = iphoneos;
586586
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
587587
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
588-
SWIFT_VERSION = 3.0;
588+
SWIFT_VERSION = 4.0;
589589
TARGETED_DEVICE_FAMILY = "1,2";
590590
VERSIONING_SYSTEM = "apple-generic";
591591
VERSION_INFO_PREFIX = "";
@@ -631,7 +631,7 @@
631631
SDKROOT = iphoneos;
632632
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
633633
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
634-
SWIFT_VERSION = 3.0;
634+
SWIFT_VERSION = 4.0;
635635
TARGETED_DEVICE_FAMILY = "1,2";
636636
VALIDATE_PRODUCT = YES;
637637
VERSIONING_SYSTEM = "apple-generic";

Algorithm.xcodeproj/xcshareddata/xcschemes/Algorithm iOS.xcscheme

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0830"
3+
LastUpgradeVersion = "0900"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -26,6 +26,7 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
language = ""
2930
shouldUseLaunchSchemeArgsEnv = "YES">
3031
<Testables>
3132
<TestableReference
@@ -55,6 +56,7 @@
5556
buildConfiguration = "Debug"
5657
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
5758
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
59+
language = ""
5860
launchStyle = "0"
5961
useCustomWorkingDirectory = "NO"
6062
ignoresPersistentStateOnLaunch = "NO"

Algorithm.xcodeproj/xcshareddata/xcschemes/Algorithm macOS.xcscheme

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0830"
3+
LastUpgradeVersion = "0900"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -26,6 +26,7 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
language = ""
2930
shouldUseLaunchSchemeArgsEnv = "YES">
3031
<Testables>
3132
<TestableReference
@@ -55,6 +56,7 @@
5556
buildConfiguration = "Debug"
5657
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
5758
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
59+
language = ""
5860
launchStyle = "0"
5961
useCustomWorkingDirectory = "NO"
6062
ignoresPersistentStateOnLaunch = "NO"

Sources/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.0.0</string>
18+
<string>2.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)