Skip to content

Commit

Permalink
Merge pull request #85 from jacobh0/master
Browse files Browse the repository at this point in the history
Drop support for iOS 8
  • Loading branch information
devxoul authored Apr 26, 2022
2 parents e421a7b + b7fe324 commit ae05350
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription
let package = Package(
name: "Then",
platforms: [
.macOS(.v10_10), .iOS(.v8), .tvOS(.v9), .watchOS(.v2)
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v2)
],
products: [
.library(name: "Then", targets: ["Then"]),
Expand Down
4 changes: 2 additions & 2 deletions Then.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Then"
s.version = "2.7.0"
s.version = "3.0.0"
s.summary = "Super sweet syntactic sugar for Swift initializers."
s.homepage = "https://github.com/devxoul/Then"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand All @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.requires_arc = true

s.swift_version = "5.0"
s.ios.deployment_target = "8.0"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
Expand Down

0 comments on commit ae05350

Please sign in to comment.