-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dropped Swift 4.2 Support, updated deployment targets
- Loading branch information
1 parent
4fd4299
commit 0ffa9c0
Showing
7 changed files
with
42 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Elevate" | ||
s.version = "3.1.0" | ||
s.version = "4.0.0" | ||
s.summary = "Elevate is a JSON parsing framework that leverages Swift to make parsing simple, reliable and composable." | ||
s.homepage = "https://github.com/Nike-Inc/Elevate" | ||
s.license = "MIT" | ||
s.authors = { "Eric Appel" => "[email protected]", "Christian Noon" => "[email protected]" } | ||
|
||
s.source = { :git => "https://github.com/Nike-Inc/Elevate.git", :tag => s.version } | ||
s.source_files = "Source/*.swift" | ||
s.swift_versions = ["4.2", "5.0"] | ||
s.swift_version = "5.0" | ||
|
||
s.ios.deployment_target = "8.0" | ||
s.osx.deployment_target = "10.11" | ||
s.tvos.deployment_target = "9.0" | ||
s.watchos.deployment_target = "2.0" | ||
s.ios.deployment_target = "10.0" | ||
s.osx.deployment_target = "10.12" | ||
s.tvos.deployment_target = "10.0" | ||
s.watchos.deployment_target = "3.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -166,7 +166,6 @@ | |
E99C82031B55E3380090FA56 /* DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DecodableTests.swift; sourceTree = "<group>"; }; | ||
E99C82061B55E5B50090FA56 /* ParserTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ParserTests.swift; sourceTree = "<group>"; }; | ||
E9CDF95F1D7F833200639059 /* Elevate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Elevate.swift; sourceTree = "<group>"; }; | ||
F6D1E6A62278C7D000D4C674 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "[email protected]"; sourceTree = "<group>"; }; | ||
FC79DCD71DCD2EDC0081379C /* RootObjectTest.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = RootObjectTest.json; sourceTree = "<group>"; }; | ||
/* End PBXFileReference section */ | ||
|
||
|
@@ -269,7 +268,6 @@ | |
4CA7AB9F1F5604DD004CE3F3 /* Elevate.podspec */, | ||
4CA7ABA01F5604DD004CE3F3 /* LICENSE */, | ||
4CA7AB981F560466004CE3F3 /* Package.swift */, | ||
F6D1E6A62278C7D000D4C674 /* [email protected] */, | ||
); | ||
name = Deployment; | ||
sourceTree = "<group>"; | ||
|
@@ -998,18 +996,18 @@ | |
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
GCC_WARN_UNUSED_FUNCTION = YES; | ||
GCC_WARN_UNUSED_VARIABLE = YES; | ||
IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
MACOSX_DEPLOYMENT_TARGET = 10.10; | ||
IPHONEOS_DEPLOYMENT_TARGET = 10.0; | ||
MACOSX_DEPLOYMENT_TARGET = 10.12; | ||
MTL_ENABLE_DEBUG_INFO = YES; | ||
ONLY_ACTIVE_ARCH = YES; | ||
SDKROOT = iphoneos; | ||
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | ||
SWIFT_VERSION = 4.2; | ||
SWIFT_VERSION = 5.0; | ||
TARGETED_DEVICE_FAMILY = "1,2"; | ||
TVOS_DEPLOYMENT_TARGET = 9.0; | ||
TVOS_DEPLOYMENT_TARGET = 10.0; | ||
VERSIONING_SYSTEM = "apple-generic"; | ||
VERSION_INFO_PREFIX = ""; | ||
WATCHOS_DEPLOYMENT_TARGET = 2.0; | ||
WATCHOS_DEPLOYMENT_TARGET = 3.0; | ||
}; | ||
name = Debug; | ||
}; | ||
|
@@ -1056,18 +1054,18 @@ | |
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
GCC_WARN_UNUSED_FUNCTION = YES; | ||
GCC_WARN_UNUSED_VARIABLE = YES; | ||
IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
MACOSX_DEPLOYMENT_TARGET = 10.10; | ||
IPHONEOS_DEPLOYMENT_TARGET = 10.0; | ||
MACOSX_DEPLOYMENT_TARGET = 10.12; | ||
MTL_ENABLE_DEBUG_INFO = NO; | ||
SDKROOT = iphoneos; | ||
SWIFT_COMPILATION_MODE = wholemodule; | ||
SWIFT_VERSION = 4.2; | ||
SWIFT_VERSION = 5.0; | ||
TARGETED_DEVICE_FAMILY = "1,2"; | ||
TVOS_DEPLOYMENT_TARGET = 9.0; | ||
TVOS_DEPLOYMENT_TARGET = 10.0; | ||
VALIDATE_PRODUCT = YES; | ||
VERSIONING_SYSTEM = "apple-generic"; | ||
VERSION_INFO_PREFIX = ""; | ||
WATCHOS_DEPLOYMENT_TARGET = 2.0; | ||
WATCHOS_DEPLOYMENT_TARGET = 3.0; | ||
}; | ||
name = Release; | ||
}; | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters