Skip to content

Commit 8a30df3

Browse files
committed
Fixed iOS deployment tartet to 12.0
1 parent 1ae3d22 commit 8a30df3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let package = Package(
66
name: "SPDiffable",
77
platforms: [
8-
.iOS(.v13)
8+
.iOS(.v12)
99
],
1010
products: [
1111
.library(

SPDiffable.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Pod::Spec.new do |s|
22

33
s.name = 'SPDiffable'
4-
s.version = '1.6.1'
4+
s.version = '1.6.2'
55
s.summary = 'Extenshion of Diffable API which allow not duplicate code and use less models.'
66
s.homepage = 'https://github.com/ivanvorobei/SPDiffable'
77
s.source = { :git => 'https://github.com/ivanvorobei/SPDiffable.git', :tag => s.version }
88
s.license = { :type => 'MIT', :file => "LICENSE" }
99
s.author = { 'Ivan Vorobei' => '[email protected]' }
1010

1111
s.swift_version = '5.1'
12-
s.ios.deployment_target = '13.0'
12+
s.ios.deployment_target = '12.0'
1313

1414
s.source_files = 'Sources/SPDiffable/**/*.swift'
1515

0 commit comments

Comments
 (0)