Skip to content

Commit

Permalink
Fixed iOS deployment tartet to 12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanvorobei committed Oct 17, 2021
1 parent 1ae3d22 commit 8a30df3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file not shown.
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: "SPDiffable",
platforms: [
.iOS(.v13)
.iOS(.v12)
],
products: [
.library(
Expand Down
4 changes: 2 additions & 2 deletions SPDiffable.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Pod::Spec.new do |s|

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

s.swift_version = '5.1'
s.ios.deployment_target = '13.0'
s.ios.deployment_target = '12.0'

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

Expand Down

0 comments on commit 8a30df3

Please sign in to comment.