Skip to content

Commit 8cf155b

Browse files
committedSep 15, 2016
Rolled back compatibility back to iOS 8
1 parent 4e2a3ec commit 8cf155b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
 

‎Sample App/.DS_Store

6 KB
Binary file not shown.

‎Sample App/Sample App.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@
482482
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
483483
GCC_WARN_UNUSED_FUNCTION = YES;
484484
GCC_WARN_UNUSED_VARIABLE = YES;
485-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
485+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
486486
MTL_ENABLE_DEBUG_INFO = YES;
487487
ONLY_ACTIVE_ARCH = YES;
488488
SDKROOT = iphoneos;
@@ -519,7 +519,7 @@
519519
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
520520
GCC_WARN_UNUSED_FUNCTION = YES;
521521
GCC_WARN_UNUSED_VARIABLE = YES;
522-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
522+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
523523
MTL_ENABLE_DEBUG_INFO = NO;
524524
SDKROOT = iphoneos;
525525
VALIDATE_PRODUCT = YES;
@@ -532,7 +532,7 @@
532532
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
533533
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
534534
INFOPLIST_FILE = "$(SRCROOT)/Sample App/Info.plist";
535-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
535+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
536536
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
537537
PRODUCT_BUNDLE_IDENTIFIER = com.apple.itunesconnect.mobile;
538538
PRODUCT_NAME = "Sample App";
@@ -546,7 +546,7 @@
546546
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
547547
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
548548
INFOPLIST_FILE = "$(SRCROOT)/Sample App/Info.plist";
549-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
549+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
550550
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
551551
PRODUCT_BUNDLE_IDENTIFIER = com.apple.itunesconnect.mobile;
552552
PRODUCT_NAME = "Sample App";

‎Siren.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Siren"
3-
s.version = "1.0.0"
3+
s.version = "1.0.1"
44
s.summary = "Notify users when a new version of your iOS app is available, and prompt them with the App Store link.."
55

66
s.description = <<-DESC
@@ -14,10 +14,10 @@ Siren is actively maintained by Arthur Sabintsev and Aaron Brager.
1414
s.homepage = "https://github.com/ArtSabintsev/Siren"
1515
s.license = "MIT"
1616
s.authors = { "Arthur Ariel Sabintsev" => "arthur@sabintsev.com", "Aaron Brager" => "getaaron@gmail.com" }
17-
s.platform = :ios, "9.0"
17+
s.platform = :ios, "8.0"
1818
s.source = { :git => "https://github.com/ArtSabintsev/Siren.git", :tag => s.version.to_s }
1919
s.source_files = 'Siren/Siren.swift'
2020
s.resources = 'Siren/Siren.bundle'
2121
s.requires_arc = true
22-
22+
2323
end

0 commit comments

Comments
 (0)
Please sign in to comment.