Skip to content

Commit

Permalink
Merge pull request #15 from takasek/fix_deployment_target
Browse files Browse the repository at this point in the history
Fix deployment target and Package.swift to Swift 4.2 / iOS 8.0
  • Loading branch information
takasek authored Aug 12, 2019
2 parents 44ae47c + 977cff3 commit 99c5cf6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Notifwift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Notifwift"
s.version = "1.1.0"
s.version = "1.1.1"
s.summary = "NSNotificationCenter wrapper for Swift"
s.license = 'MIT'
s.homepage = "https://github.com/takasek/Notifwift"
Expand Down
4 changes: 2 additions & 2 deletions Notifwift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -323,7 +323,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
Expand Down
5 changes: 1 addition & 4 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
// swift-tools-version:5.1
// swift-tools-version:4.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription

let package = Package(
name: "Notifwift",
platforms: [
.iOS(.v8)
],
products: [
.library(name: "Notifwift", targets: ["Notifwift"]),
],
Expand Down

0 comments on commit 99c5cf6

Please sign in to comment.